結果
問題 | No.304 鍵(1) |
ユーザー | maspy |
提出日時 | 2020-01-21 13:37:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 98 ms / 2,000 ms |
コード長 | 1,334 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,592 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-17 02:26:32 |
合計ジャッジ時間 | 1,176 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
27,352 KB |
testcase_01 | AC | 60 ms
27,352 KB |
testcase_02 | AC | 98 ms
27,224 KB |
testcase_03 | AC | 59 ms
27,352 KB |
testcase_04 | AC | 73 ms
26,968 KB |
testcase_05 | AC | 55 ms
27,592 KB |
ソースコード
import sys from functools import wraps readline = sys.stdin.readline # DEBUG = True DEBUG = False class Interactive: def __init__(self): self.ques_cnt = 0 self.create_data() def create_data(self): import random x = random.randint(0,999) pwd = '{:03}'.format(x) print('created pwd:', pwd) self.pwd = pwd def resp_ques(self, *args): self.ques_cnt += 1 if args == (self.pwd,): return 'unlocked\n' else: return 'locked\n' def resp_ans(self, *args): print('question cnt:', self.ques_cnt) pass if DEBUG: interactive = Interactive() def question(*args, offset=None): if offset is None: print(*args, flush=True) else: print(offset, *args, flush=True) if DEBUG: resp = interactive.resp_ques(*args) print(resp) return resp else: return readline() def answer(*args, offset=None): if offset is None: print(*args, flush=True) else: print(offset, *args, flush=True) if DEBUG: interactive.resp_ans(*args) else: exit() for x in range(1000): ques = '{:03}'.format(x) resp = question(ques).rstrip() if resp == 'unlocked': break