結果

問題 No.163 cAPSlOCK
ユーザー hirayuu_yc
提出日時 2023-08-22 15:29:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 127 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 53,636 KB
最終ジャッジ日時 2024-12-17 15:00:19
合計ジャッジ時間 1,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
for i in S:
	if i in "qwertyuiopasdfghjklzxcvbnm":
		print(i.upper(),end="")
	else:
		print(i.lower(),end="")
print()
0