結果

問題 No.163 cAPSlOCK
ユーザー Sttashe EgnmSttashe Egnm
提出日時 2024-02-25 12:04:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 215 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 53,784 KB
最終ジャッジ日時 2024-09-29 10:52:58
合計ジャッジ時間 2,059 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,896 KB
testcase_01 AC 35 ms
51,980 KB
testcase_02 AC 35 ms
53,420 KB
testcase_03 AC 34 ms
53,020 KB
testcase_04 AC 34 ms
52,148 KB
testcase_05 AC 35 ms
52,016 KB
testcase_06 AC 38 ms
53,544 KB
testcase_07 AC 34 ms
51,632 KB
testcase_08 AC 35 ms
51,984 KB
testcase_09 AC 34 ms
53,260 KB
testcase_10 AC 35 ms
52,336 KB
testcase_11 AC 38 ms
52,464 KB
testcase_12 AC 36 ms
52,724 KB
testcase_13 AC 33 ms
53,784 KB
testcase_14 AC 33 ms
52,524 KB
testcase_15 AC 31 ms
53,504 KB
testcase_16 AC 33 ms
53,120 KB
testcase_17 AC 32 ms
52,268 KB
testcase_18 AC 32 ms
52,276 KB
testcase_19 AC 33 ms
52,764 KB
testcase_20 AC 33 ms
52,804 KB
testcase_21 AC 32 ms
52,944 KB
testcase_22 AC 33 ms
51,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

sen=list(input())
def exchange_num(letter):
	if letter>=97:
		ans=letter-32
	else:
		ans=letter+32
	return ans
final=[]
for i in range(0,len(sen)):
	final.append(chr(exchange_num(ord(sen[i]))))
print("".join(final))
0