結果

問題 No.3093 Please GCD
ユーザー ああいいああいい
提出日時 2022-04-01 22:47:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 93,948 KB
平均クエリ数 590.83
最終ジャッジ日時 2024-11-20 11:00:16
合計ジャッジ時間 7,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,080 KB
testcase_01 AC 58 ms
69,004 KB
testcase_02 AC 59 ms
68,824 KB
testcase_03 WA -
testcase_04 AC 62 ms
74,072 KB
testcase_05 WA -
testcase_06 AC 63 ms
75,096 KB
testcase_07 AC 59 ms
69,072 KB
testcase_08 AC 158 ms
78,288 KB
testcase_09 AC 71 ms
75,000 KB
testcase_10 AC 56 ms
68,220 KB
testcase_11 AC 66 ms
75,096 KB
testcase_12 AC 62 ms
68,976 KB
testcase_13 AC 67 ms
68,412 KB
testcase_14 AC 76 ms
75,352 KB
testcase_15 AC 58 ms
68,568 KB
testcase_16 AC 112 ms
76,484 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 157 ms
79,576 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 74 ms
74,660 KB
testcase_28 AC 160 ms
80,116 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

import sys

now = 1
dat = [0] * (N + 1)
while True:
    for i in range(2,N // now + 2):
        if now * i > N:
            print("!",now)
            exit()
        if dat[now * i] == 1:continue
        print("?",now*i)
        s = int(input())
        if s == now * i:
            now = now * i
            break
        else:
            for j in range(now*i,N+1,now*i):
                dat[j] = 1
                
0