結果
問題 | No.305 鍵(2) |
ユーザー | yuki2006 |
提出日時 | 2015-11-27 19:11:06 |
言語 | PyPy2 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 368 bytes |
コンパイル時間 | 1,378 ms |
コンパイル使用メモリ | 77,056 KB |
実行使用メモリ | 94,536 KB |
平均クエリ数 | 40.77 |
最終ジャッジ日時 | 2024-07-16 06:33:47 |
合計ジャッジ時間 | 3,943 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 102 ms
92,384 KB |
testcase_02 | RE | - |
testcase_03 | AC | 102 ms
92,360 KB |
testcase_04 | AC | 103 ms
92,288 KB |
testcase_05 | AC | 116 ms
94,536 KB |
testcase_06 | AC | 103 ms
92,288 KB |
testcase_07 | RE | - |
testcase_08 | AC | 105 ms
91,464 KB |
testcase_09 | AC | 102 ms
92,392 KB |
testcase_10 | AC | 102 ms
92,488 KB |
testcase_11 | AC | 102 ms
92,352 KB |
testcase_12 | AC | 102 ms
92,104 KB |
ソースコード
import sys def out(nums): print "".join(map(str, nums)) sys.stdout.flush() n, mes = raw_input().split() return int(n) i = 0 nums = [0] * 10 fixed = 0 count = out(nums) while count < 10: nums[fixed] += 1 ans = out(nums) if ans < count: nums[fixed] -= 1 fixed += 1 elif ans > count: fixed += 1 count = ans