結果

問題 No.163 cAPSlOCK
ユーザー あかりきあかりき
提出日時 2021-02-09 22:01:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 246 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 87,028 KB
実行使用メモリ 76,360 KB
最終ジャッジ日時 2023-09-21 09:51:26
合計ジャッジ時間 3,179 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,220 KB
testcase_01 AC 74 ms
71,076 KB
testcase_02 AC 72 ms
71,380 KB
testcase_03 AC 78 ms
76,236 KB
testcase_04 AC 79 ms
75,928 KB
testcase_05 AC 79 ms
71,236 KB
testcase_06 AC 75 ms
71,408 KB
testcase_07 AC 80 ms
76,160 KB
testcase_08 AC 79 ms
76,216 KB
testcase_09 AC 80 ms
76,188 KB
testcase_10 AC 74 ms
71,572 KB
testcase_11 AC 74 ms
71,560 KB
testcase_12 AC 77 ms
75,916 KB
testcase_13 AC 81 ms
76,140 KB
testcase_14 AC 79 ms
76,184 KB
testcase_15 AC 80 ms
76,360 KB
testcase_16 AC 79 ms
75,968 KB
testcase_17 AC 77 ms
76,108 KB
testcase_18 AC 74 ms
71,352 KB
testcase_19 AC 75 ms
71,420 KB
testcase_20 AC 74 ms
71,300 KB
testcase_21 AC 73 ms
71,668 KB
testcase_22 AC 79 ms
76,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=list(input())
ans=[]
c=[chr(i) for i in range(97, 97+26)]
C=[chr(i) for i in range(65, 65+26)]
for i in range(len(s)):
  for j in range(26):
    if s[i]==c[j]:
      ans.append(C[j])
    if s[i]==C[j]:
      ans.append(c[j])
print(''.join(ans))
0