結果
問題 | No.305 鍵(2) |
ユーザー | はむ吉🐹 |
提出日時 | 2015-11-27 23:51:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,193 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 27,736 KB |
平均クエリ数 | 48.00 |
最終ジャッジ日時 | 2024-07-16 06:44:04 |
合計ジャッジ時間 | 2,023 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 48 ms
27,352 KB |
testcase_02 | AC | 47 ms
27,216 KB |
testcase_03 | AC | 48 ms
27,480 KB |
testcase_04 | AC | 53 ms
27,224 KB |
testcase_05 | AC | 52 ms
27,608 KB |
testcase_06 | AC | 48 ms
27,224 KB |
testcase_07 | WA | - |
testcase_08 | AC | 49 ms
27,600 KB |
testcase_09 | AC | 52 ms
27,352 KB |
testcase_10 | AC | 49 ms
27,608 KB |
testcase_11 | AC | 48 ms
27,480 KB |
testcase_12 | AC | 49 ms
27,352 KB |
ソースコード
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import sys DIGITS = 10 class Key(object): def __init__(self): self.guess = [0] * DIGITS self.status = -1 self.query = 0 @property def guess_int(self): return sum(x * y for (x, y) in zip(self.guess, [10 ** e for e in range(DIGITS - 1, -1, -1)])) def get_status(self): self.query += 1 print("{guess:0=10d}".format(guess=self.guess_int)) [n, _] = input().split() self.status = int(n) if self.status == DIGITS: sys.exit(0) def communicate(self): for d in range(DIGITS): for x in range(10): self.guess[d] = x s = int(self.status) self.get_status() if s == -1: continue elif s == self.status: continue elif s < self.status: break elif s > self.status: self.guess[d] -= 1 break def main(): k = Key() k.communicate() if __name__ == "__main__": main()