結果
| 問題 | No.163 cAPSlOCK |
| コンテスト | |
| ユーザー |
compass19
|
| 提出日時 | 2016-06-03 19:54:35 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 21 ms / 5,000 ms |
| + 599µs | |
| コード長 | 186 bytes |
| 記録 | |
| コンパイル時間 | 57 ms |
| コンパイル使用メモリ | 14,976 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2026-09-11 21:23:15 |
| 合計ジャッジ時間 | 2,198 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
def conversion(a): if a.upper() == a: return a.lower() else: return a.upper() password = list(map(conversion, list(input()))) key = '' for i in password: key = key + i print(key)
compass19