結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
68,952 KB
testcase_01 AC 65 ms
68,184 KB
testcase_02 AC 66 ms
69,352 KB
testcase_03 AC 98 ms
77,272 KB
testcase_04 AC 80 ms
76,632 KB
testcase_05 WA -
testcase_06 AC 67 ms
73,684 KB
testcase_07 AC 74 ms
76,412 KB
testcase_08 AC 80 ms
74,992 KB
testcase_09 AC 75 ms
74,712 KB
testcase_10 AC 64 ms
68,568 KB
testcase_11 AC 74 ms
75,928 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 74 ms
73,816 KB
testcase_15 AC 68 ms
68,696 KB
testcase_16 AC 69 ms
69,108 KB
testcase_17 AC 81 ms
74,336 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 93 ms
76,324 KB
testcase_21 WA -
testcase_22 AC 199 ms
85,260 KB
testcase_23 WA -
testcase_24 AC 147 ms
78,352 KB
testcase_25 WA -
testcase_26 AC 72 ms
76,676 KB
testcase_27 AC 138 ms
77,656 KB
testcase_28 WA -
testcase_29 AC 72 ms
75,384 KB
権限があれば一括ダウンロードができます

ソースコード

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