結果

問題 No.3093 Please GCD
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-04-01 22:59:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 93,276 KB
平均クエリ数 8098.53
最終ジャッジ日時 2024-04-30 15:32:02
合計ジャッジ時間 5,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
69,316 KB
testcase_01 AC 52 ms
70,216 KB
testcase_02 AC 64 ms
80,272 KB
testcase_03 AC 127 ms
92,788 KB
testcase_04 AC 126 ms
92,540 KB
testcase_05 AC 124 ms
92,296 KB
testcase_06 AC 126 ms
92,548 KB
testcase_07 AC 127 ms
92,972 KB
testcase_08 AC 134 ms
92,572 KB
testcase_09 AC 130 ms
92,528 KB
testcase_10 AC 50 ms
68,656 KB
testcase_11 AC 71 ms
85,508 KB
testcase_12 AC 111 ms
89,860 KB
testcase_13 AC 127 ms
92,404 KB
testcase_14 AC 128 ms
92,216 KB
testcase_15 AC 62 ms
80,604 KB
testcase_16 AC 128 ms
92,764 KB
testcase_17 AC 129 ms
92,808 KB
testcase_18 AC 128 ms
92,832 KB
testcase_19 AC 133 ms
92,552 KB
testcase_20 AC 128 ms
92,916 KB
testcase_21 AC 128 ms
93,276 KB
testcase_22 AC 129 ms
92,660 KB
testcase_23 AC 132 ms
92,412 KB
testcase_24 AC 130 ms
92,688 KB
testcase_25 AC 127 ms
92,680 KB
testcase_26 AC 125 ms
92,752 KB
testcase_27 AC 127 ms
92,800 KB
testcase_28 AC 129 ms
92,868 KB
testcase_29 AC 127 ms
92,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

N = int(stdin.readline())
"""
ans = -1

for loop in range(1,N+1):

    print ("? " + str(loop) , flush=True )

    cat = int(stdin.readline())
    ans = max( ans , cat )

    assert loop <= 600 or cat == -1


"""

for i in range(1,N+1):
    print ("!",i)
0