結果
| 問題 | No.1026 OGAWA's New Keyboard |
| ユーザー |
StarMatyan
|
| 提出日時 | 2020-11-28 22:45:48 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 787 ms / 1,000 ms |
| コード長 | 177 bytes |
| 記録 | |
| コンパイル時間 | 541 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 15,484 KB |
| 最終ジャッジ日時 | 2026-04-04 02:40:33 |
| 合計ジャッジ時間 | 5,126 ms |
|
ジャッジサーバーID (参考情報) |
judge4_0 / judge5_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