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