結果
問題 | No.305 鍵(2) |
ユーザー | ssmkzk |
提出日時 | 2018-11-12 17:08:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 595 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 42,276 KB |
最終ジャッジ日時 | 2024-07-16 16:24:54 |
合計ジャッジ時間 | 6,522 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
import sys def list_conect(l): ans = "" for l_i in l: ans += l_i return ans S = "0000000000" l = list(S) print(list_conect(l)) old_ck, rock = map(str, input().split()) old_ck = int(old_ck) print(list_conect(l)) i = 0 while True: ck, rock = map(str, input().split()) ck = int(ck) if ck == 10: sys.exit() if old_ck == ck: M = int(l[i]) M += 1 l[i] = str(l[i]) elif old_ck < ck: i += 1 else: M = int(l[i]) M -= 1 l[i] = str(l[i]) i += 1 old_ck = ck print(list_conect(l))