結果
| 問題 | No.163 cAPSlOCK |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-08-13 02:22:52 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 85 bytes |
| 記録 | |
| コンパイル時間 | 650 ms |
| コンパイル使用メモリ | 20,692 KB |
| 実行使用メモリ | 41,004 KB |
| 最終ジャッジ日時 | 2026-04-02 00:46:45 |
| 合計ジャッジ時間 | 7,705 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 20 |
ソースコード
for c in list(input()):
res += c.upper() if c.islower() else c.lower()
print(res)