結果
| 問題 | No.1026 OGAWA's New Keyboard |
| ユーザー |
StarMatyan
|
| 提出日時 | 2020-11-28 22:45:48 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 797 ms / 1,000 ms |
| + 34µs | |
| コード長 | 177 bytes |
| 記録 | |
| コンパイル時間 | 302 ms |
| コンパイル使用メモリ | 21,412 KB |
| 実行使用メモリ | 15,864 KB |
| 最終ジャッジ日時 | 2026-08-25 20:06:23 |
| 合計ジャッジ時間 | 5,987 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 21 |
ソースコード
inputer =int(input()) result="" for numer in range(inputer): dat_s=input() if dat_s[:1] =="0": result = result+dat_s[2:] else: result = dat_s[2:] +result print(result)
StarMatyan