結果
問題 |
No.163 cAPSlOCK
|
ユーザー |
![]() |
提出日時 | 2016-08-24 06:00:28 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 225 bytes |
コンパイル時間 | 113 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-08 01:49:46 |
合計ジャッジ時間 | 1,636 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 20 |
ソースコード
S = input() #-----機能部分----- res = "" for i in range(len(S)): if S[i] in string.ascii_lowercase: res = res + S[i].upper() elif S[i] in string.ascii_uppercase: res = res + S[i].lower() else: pass print(res)