結果
問題 |
No.163 cAPSlOCK
|
ユーザー |
![]() |
提出日時 | 2021-03-22 21:59:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 170 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-24 10:16:09 |
合計ジャッジ時間 | 1,507 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 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)