結果

問題 No.163 cAPSlOCK
ユーザー K5h1n0K5h1n0
提出日時 2023-11-30 05:53:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 53,508 KB
最終ジャッジ日時 2024-09-26 13:49:16
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,404 KB
testcase_01 AC 33 ms
52,872 KB
testcase_02 AC 33 ms
52,052 KB
testcase_03 AC 34 ms
52,368 KB
testcase_04 AC 34 ms
52,796 KB
testcase_05 AC 34 ms
52,704 KB
testcase_06 AC 34 ms
52,076 KB
testcase_07 AC 34 ms
53,288 KB
testcase_08 AC 33 ms
52,236 KB
testcase_09 AC 34 ms
52,744 KB
testcase_10 AC 33 ms
51,960 KB
testcase_11 AC 33 ms
52,060 KB
testcase_12 AC 34 ms
53,508 KB
testcase_13 AC 34 ms
52,432 KB
testcase_14 AC 33 ms
52,884 KB
testcase_15 AC 33 ms
52,664 KB
testcase_16 AC 33 ms
52,736 KB
testcase_17 AC 33 ms
52,212 KB
testcase_18 AC 34 ms
52,052 KB
testcase_19 AC 33 ms
52,072 KB
testcase_20 AC 35 ms
52,216 KB
testcase_21 AC 35 ms
53,172 KB
testcase_22 AC 34 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ans = ""
for i in s:
    if ord("A") <= ord(i) <= ord("Z"):
        ans += chr(ord(i)+32)
    else:
        ans += chr(ord(i)-32)
print(ans)
0