結果

問題 No.163 cAPSlOCK
ユーザー yuki2006yuki2006
提出日時 2015-03-09 23:42:07
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 126 bytes
コンパイル時間 1,330 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-06-24 17:02:58
合計ジャッジ時間 4,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
75,520 KB
testcase_01 AC 89 ms
75,648 KB
testcase_02 AC 89 ms
75,392 KB
testcase_03 AC 90 ms
75,392 KB
testcase_04 AC 89 ms
75,264 KB
testcase_05 AC 87 ms
75,776 KB
testcase_06 AC 88 ms
75,520 KB
testcase_07 AC 88 ms
75,392 KB
testcase_08 AC 89 ms
75,392 KB
testcase_09 AC 89 ms
75,136 KB
testcase_10 AC 88 ms
75,136 KB
testcase_11 AC 89 ms
75,392 KB
testcase_12 AC 87 ms
75,648 KB
testcase_13 AC 88 ms
75,520 KB
testcase_14 AC 89 ms
75,520 KB
testcase_15 AC 89 ms
75,520 KB
testcase_16 AC 89 ms
75,136 KB
testcase_17 AC 90 ms
75,392 KB
testcase_18 AC 88 ms
75,264 KB
testcase_19 AC 90 ms
75,520 KB
testcase_20 AC 90 ms
75,520 KB
testcase_21 AC 90 ms
75,520 KB
testcase_22 AC 90 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

def toggle_case(x):
    return chr(ord(x) ^ 32)


S = raw_input()

print "".join(map(toggle_case, S))
0