結果
| 問題 | No.163 cAPSlOCK |
| コンテスト | |
| ユーザー |
helical28556801
|
| 提出日時 | 2017-04-09 15:11:02 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 99 ms / 5,000 ms |
| コード長 | 139 bytes |
| 記録 | |
| コンパイル時間 | 368 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 36,052 KB |
| 最終ジャッジ日時 | 2026-04-01 16:52:24 |
| 合計ジャッジ時間 | 3,547 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
A=input() i=0 shift=32 ss=96 x="" for n in A: asc=ord(A[i]) if asc>ss: asc-=shift else: asc+=shift x+=chr(asc) i+=1 print(x)
helical28556801