結果

問題 No.3093 Please GCD
ユーザー ShirotsumeShirotsume
提出日時 2022-04-01 22:01:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 98,524 KB
平均クエリ数 601.00
最終ジャッジ日時 2024-11-20 09:17:34
合計ジャッジ時間 10,142 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 117 ms
93,600 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 127 ms
86,360 KB
testcase_09 WA -
testcase_10 AC 95 ms
81,112 KB
testcase_11 WA -
testcase_12 AC 117 ms
90,136 KB
testcase_13 AC 157 ms
94,040 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 197 ms
96,140 KB
testcase_19 AC 133 ms
94,112 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 288 ms
98,248 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())


n = ii()
ans = list(range(1, n + 1))
import random
for _ in range(600):
    now = random.choice(ans[:max(1, len(ans) // 2)])
    print('?', now, flush = True)
    s = ii()
    if s == -1:
        exit()
    ans2 = []
    for v in ans:
        if v % s == 0:
            ans2.append(v)
    ans = ans2

print('!', ans.pop())
    
0