結果

問題 No.163 cAPSlOCK
コンテスト
ユーザー nikuzuki
提出日時 2016-06-13 15:38:29
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 138 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 77,104 KB
最終ジャッジ日時 2025-12-03 20:51:04
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

S = raw_input()
ans = ""
for i in S:
    if i.islower():
        ans = ans + i.upper()
    else:
        ans = ans + i.lower()

print ans
0