結果

問題 No.1187 皇帝ペンギン
ユーザー lemondolemondo
提出日時 2020-08-22 14:54:02
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 813 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 76,868 KB
平均クエリ数 12.83
最終ジャッジ日時 2024-07-17 06:22:43
合計ジャッジ時間 6,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
75,296 KB
testcase_01 AC 63 ms
76,304 KB
testcase_02 AC 63 ms
76,140 KB
testcase_03 AC 64 ms
74,848 KB
testcase_04 AC 62 ms
75,284 KB
testcase_05 AC 63 ms
75,940 KB
testcase_06 AC 64 ms
75,556 KB
testcase_07 AC 64 ms
76,316 KB
testcase_08 AC 63 ms
75,236 KB
testcase_09 AC 64 ms
75,132 KB
testcase_10 AC 62 ms
75,684 KB
testcase_11 AC 64 ms
75,056 KB
testcase_12 AC 63 ms
74,944 KB
testcase_13 AC 64 ms
74,808 KB
testcase_14 AC 64 ms
75,164 KB
testcase_15 AC 64 ms
75,400 KB
testcase_16 AC 63 ms
74,928 KB
testcase_17 AC 63 ms
75,984 KB
testcase_18 AC 64 ms
76,192 KB
testcase_19 AC 64 ms
76,000 KB
testcase_20 AC 63 ms
75,148 KB
testcase_21 AC 63 ms
74,968 KB
testcase_22 AC 64 ms
75,220 KB
testcase_23 AC 62 ms
75,404 KB
testcase_24 AC 63 ms
75,256 KB
testcase_25 AC 62 ms
75,064 KB
testcase_26 AC 61 ms
76,008 KB
testcase_27 AC 62 ms
75,416 KB
testcase_28 AC 60 ms
75,504 KB
testcase_29 AC 62 ms
74,944 KB
testcase_30 AC 62 ms
74,924 KB
testcase_31 AC 63 ms
76,192 KB
testcase_32 AC 65 ms
76,772 KB
testcase_33 AC 63 ms
75,432 KB
testcase_34 AC 62 ms
75,684 KB
testcase_35 AC 63 ms
75,240 KB
testcase_36 AC 63 ms
75,800 KB
testcase_37 AC 63 ms
75,444 KB
testcase_38 AC 63 ms
75,460 KB
testcase_39 AC 64 ms
74,604 KB
testcase_40 AC 63 ms
75,112 KB
testcase_41 AC 63 ms
75,860 KB
testcase_42 AC 64 ms
76,060 KB
testcase_43 AC 62 ms
75,164 KB
testcase_44 AC 63 ms
75,536 KB
testcase_45 AC 63 ms
74,648 KB
testcase_46 AC 63 ms
76,152 KB
testcase_47 AC 63 ms
76,668 KB
testcase_48 AC 63 ms
74,672 KB
testcase_49 AC 65 ms
74,916 KB
testcase_50 AC 64 ms
75,260 KB
testcase_51 AC 63 ms
76,868 KB
testcase_52 AC 63 ms
75,436 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

if l!=leng-1:
    right = primes[l+1]
else:
    right = 1000
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