結果

問題 No.305 鍵(2)
ユーザー gorugo30gorugo30
提出日時 2021-03-18 10:14:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 81,220 KB
実行使用メモリ 70,224 KB
平均クエリ数 86.69
最終ジャッジ日時 2024-07-17 02:58:56
合計ジャッジ時間 2,034 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
69,924 KB
testcase_01 AC 62 ms
69,044 KB
testcase_02 AC 62 ms
69,284 KB
testcase_03 AC 62 ms
69,176 KB
testcase_04 AC 61 ms
68,900 KB
testcase_05 AC 62 ms
69,424 KB
testcase_06 AC 57 ms
68,908 KB
testcase_07 AC 63 ms
69,120 KB
testcase_08 AC 63 ms
68,620 KB
testcase_09 AC 66 ms
69,096 KB
testcase_10 AC 63 ms
70,224 KB
testcase_11 AC 63 ms
69,468 KB
testcase_12 AC 63 ms
69,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = ""
for keta in range(10):
    maxi = -1
    maxx = -1
    for i in range(10):
        print(ans + str(i) + "0" * (10 - keta - 1), flush = True)
        x, m = input().split()
        x = int(x)
        if x == 10:
            exit()
        if x > maxx:
            maxx = x
            maxi = i
    ans += str(maxi)
0