結果

問題 No.163 cAPSlOCK
コンテスト
ユーザー togatoga
提出日時 2015-08-22 12:29:57
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 151 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 77,316 KB
最終ジャッジ日時 2025-12-03 16:23:02
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

A = raw_input()
ans = ""
B = [0, 1, 3]
for i in A:
    if (i.isupper()):
        ans += i.lower()
    else:
        ans += i.upper()
print ans        
0