結果

問題 No.1187 皇帝ペンギン
ユーザー lemondolemondo
提出日時 2020-08-22 14:52:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 772 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 83,884 KB
平均クエリ数 12.76
最終ジャッジ日時 2024-07-17 06:22:36
合計ジャッジ時間 7,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 63 ms
76,896 KB
testcase_02 AC 65 ms
75,616 KB
testcase_03 AC 62 ms
75,200 KB
testcase_04 AC 64 ms
75,488 KB
testcase_05 AC 65 ms
76,660 KB
testcase_06 AC 64 ms
76,644 KB
testcase_07 AC 63 ms
76,352 KB
testcase_08 AC 63 ms
74,732 KB
testcase_09 AC 63 ms
76,428 KB
testcase_10 AC 63 ms
74,620 KB
testcase_11 RE -
testcase_12 AC 63 ms
75,676 KB
testcase_13 AC 68 ms
75,620 KB
testcase_14 AC 64 ms
75,864 KB
testcase_15 AC 64 ms
75,996 KB
testcase_16 AC 63 ms
75,712 KB
testcase_17 AC 63 ms
75,600 KB
testcase_18 AC 64 ms
75,732 KB
testcase_19 AC 63 ms
74,736 KB
testcase_20 AC 62 ms
75,744 KB
testcase_21 AC 63 ms
75,440 KB
testcase_22 AC 63 ms
75,452 KB
testcase_23 AC 64 ms
76,244 KB
testcase_24 AC 64 ms
75,028 KB
testcase_25 AC 64 ms
76,240 KB
testcase_26 AC 64 ms
75,876 KB
testcase_27 AC 64 ms
75,228 KB
testcase_28 AC 63 ms
74,812 KB
testcase_29 AC 63 ms
76,152 KB
testcase_30 AC 64 ms
75,000 KB
testcase_31 AC 63 ms
74,684 KB
testcase_32 AC 64 ms
76,540 KB
testcase_33 AC 64 ms
74,800 KB
testcase_34 AC 63 ms
74,360 KB
testcase_35 AC 63 ms
74,944 KB
testcase_36 AC 63 ms
74,700 KB
testcase_37 AC 62 ms
75,512 KB
testcase_38 AC 62 ms
75,616 KB
testcase_39 AC 63 ms
75,304 KB
testcase_40 AC 63 ms
75,216 KB
testcase_41 AC 63 ms
75,356 KB
testcase_42 AC 64 ms
76,636 KB
testcase_43 AC 63 ms
74,576 KB
testcase_44 AC 63 ms
74,868 KB
testcase_45 AC 63 ms
74,996 KB
testcase_46 AC 64 ms
75,292 KB
testcase_47 AC 64 ms
74,740 KB
testcase_48 AC 62 ms
74,600 KB
testcase_49 AC 64 ms
76,216 KB
testcase_50 AC 64 ms
75,800 KB
testcase_51 AC 64 ms
74,884 KB
testcase_52 AC 63 ms
75,492 KB
testcase_53 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return map(int, input().split())
sys.setrecursionlimit(10**9)

s = set()
primes = []
for i in range(2, 1001):
    if i in s:
        continue
    primes.append(i)
    cnt = 2
    while cnt*i<1001:
        s.add(cnt*i)
        cnt += 1
leng = len(primes)
l, r = 0, leng
cnt = 0
while l+1<r:
    half = (l+r)//2
    print('? {}'.format(primes[half]))
    sys.stdout.flush()
    cnt += 1
    answer = input()
    if answer=='safe':
        l = half
    else:
        r = half

right = primes[l+1]
for _ in range(cnt, 25):
    print('? {}'.format(right-1))
    sys.stdout.flush()
    if input()=='safe':
        break
    else:
        right -= 1
print('! {}'.format(right-1))
sys.stdout.flush()
exit()
0