【杭电多校2020】Distinct Sub-palindromes 分析:
题目:
The Fibonacci numbers are defined as below: Given three integers N, C and K, calculate the following summation:
Since the answer can be huge, output it modulo 1000000009 (1091…
第一个字符串"BaSiC"中的小写字母变成大写字母;
第二个字符串"iNfOrMaTiOn"中的大写字母变成小写字母;
方法一:
代码如下:
assume cs:codesg,ds:datasgdatasg segment
db BaSiC
db iNfOrMaTiOn
datasg endscodesg segment
start…