乙級(Basic Level) 1023 舊鍵盤打字
阿新 • • 發佈:2018-08-27
輸入 乙級 可用 描述 輸出 strong tro stream not
題目描述
舊鍵盤上壞了幾個鍵,於是在敲一段文字的時候,對應的字符就不會出現。現在給出應該輸入的一段文字、以及壞掉的那些鍵,打出的結果文
字會是怎樣?
輸入描述:
輸入在2行中分別給出壞掉的那些鍵、以及應該輸入的文字。其中對應英文字母的壞鍵以大寫給出;每段文字是不超過10^5個字符的串。可用的
字符包括字母[a-z, A-Z]、數字0-9、以及下劃線“_”(代表空格)、“,”、“.”、“-”、“+”(代表上檔鍵)。題目保證第2行輸入的文字串非空。
註意:如果上檔鍵壞掉了,那麽大寫的英文字母無法被打出。
輸出描述:
在一行中輸出能夠被打出的結果文字。如果沒有一個字符能被打出,則輸出空行。
輸入例子:
7+IE.
7_This_is_a_test.
輸出例子:
_hs_s_a_tst
Python: a = input() b = input() c = ‘‘ for i in b: if i.upper() not in a: c += i if ‘+‘ in a: for i in c: if i<‘A‘ or i>‘Z‘: print(i,end=‘‘) else: print(c)
C++: #include <iostream> #include <stdio.h> #include <string> using namespace std; int main(){ int i,j; string A,B; //A.resize(5000); //B.resize(5000); //scanf("%s",&A[0]); //scanf("%s",&B); cin>>A>>B; for(i=0;i<B.size();i++){ for(j=0;j<A.size();j++){ if((B[i]==A[j]) || (B[i]>=‘a‘ && B[i]<=‘z‘ && B[i]-32 == A[j]) || (A[j]==‘+‘ && B[i]<=‘Z‘ && B[i]>=‘A‘)){ j = -1; break; } } if(j != -1) printf("%c",B[i]); } return 0; }
乙級(Basic Level) 1023 舊鍵盤打字