結果

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

ソースコード

diff #

S = raw_input()
passWord = ""
for i in S:
    if i.isupper():
        passWord += i.lower()
    else:
        passWord += i.upper()
print passWord
0