結果

問題 No.163 cAPSlOCK
ユーザー steek79
提出日時 2015-10-11 13:52:12
言語 Python2
(2.7.18)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 132 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-07-21 06:25:03
合計ジャッジ時間 1,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

inp = raw_input()

ans = ""
for l in inp:
    if l.islower():
        ans += l.upper()
    else:
        ans += l.lower()

print ans
0