結果
問題 |
No.163 cAPSlOCK
|
ユーザー |
![]() |
提出日時 | 2021-03-22 22:00:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 168 bytes |
コンパイル時間 | 783 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-24 10:17:06 |
合計ジャッジ時間 | 1,941 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 RE * 2 |
other | RE * 20 |
ソースコード
S = str(input()) for i in range(0,len(S) - 1): if S[i] == S[i].upper(): S[i] = S[i].lower() continue else: S[i] = S[i].upper() print(S)