結果

問題 No.304 鍵(1)
ユーザー convexineqconvexineq
提出日時 2021-01-13 03:44:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 86,860 KB
実行使用メモリ 92,292 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-24 02:50:33
合計ジャッジ時間 1,823 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
87,124 KB
testcase_01 AC 102 ms
87,308 KB
testcase_02 AC 179 ms
92,292 KB
testcase_03 AC 102 ms
87,344 KB
testcase_04 AC 130 ms
92,032 KB
testcase_05 AC 99 ms
87,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(t):
    print(t)
    sys.stdout.flush()    
    return input()
    
import sys
from itertools import product
s = "0123456789"
for lst in product(s,repeat=3):
    res = ask("".join(lst))
    if res == "unlocked": exit()
0