結果

問題 No.3093 Please GCD
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-04-01 22:59:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 92,916 KB
平均クエリ数 8098.53
最終ジャッジ日時 2024-11-20 11:35:21
合計ジャッジ時間 6,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
68,908 KB
testcase_01 AC 62 ms
69,076 KB
testcase_02 AC 78 ms
79,728 KB
testcase_03 AC 150 ms
92,364 KB
testcase_04 AC 149 ms
92,556 KB
testcase_05 AC 148 ms
92,544 KB
testcase_06 AC 150 ms
92,796 KB
testcase_07 AC 149 ms
92,416 KB
testcase_08 AC 147 ms
92,288 KB
testcase_09 AC 149 ms
92,916 KB
testcase_10 AC 63 ms
68,252 KB
testcase_11 AC 84 ms
84,712 KB
testcase_12 AC 128 ms
90,612 KB
testcase_13 AC 148 ms
92,368 KB
testcase_14 AC 148 ms
92,656 KB
testcase_15 AC 78 ms
79,680 KB
testcase_16 AC 148 ms
92,312 KB
testcase_17 AC 149 ms
92,764 KB
testcase_18 AC 151 ms
92,512 KB
testcase_19 AC 147 ms
92,472 KB
testcase_20 AC 149 ms
92,224 KB
testcase_21 AC 149 ms
92,512 KB
testcase_22 AC 150 ms
92,716 KB
testcase_23 AC 149 ms
92,568 KB
testcase_24 AC 149 ms
92,724 KB
testcase_25 AC 148 ms
92,588 KB
testcase_26 AC 148 ms
92,232 KB
testcase_27 AC 149 ms
92,492 KB
testcase_28 AC 152 ms
92,492 KB
testcase_29 AC 149 ms
92,824 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