結果

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

ソースコード

diff #
raw source code

#coding:utf-8

s=raw_input()

str=''
for i in s:
	if i.islower():
		str+=i.upper()
	else:
		str+=i.lower()

print str
0