結果

問題 No.3093 Please GCD
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-04-01 22:59:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 86,956 KB
実行使用メモリ 93,540 KB
平均クエリ数 8098.53
最終ジャッジ日時 2023-08-12 20:26:32
合計ジャッジ時間 7,490 ms
ジャッジサーバーID
(参考情報)
judge11 / judge7
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
86,916 KB
testcase_01 AC 96 ms
87,012 KB
testcase_02 AC 113 ms
91,964 KB
testcase_03 AC 180 ms
93,240 KB
testcase_04 AC 175 ms
93,048 KB
testcase_05 AC 178 ms
93,204 KB
testcase_06 AC 178 ms
92,728 KB
testcase_07 AC 181 ms
92,948 KB
testcase_08 AC 184 ms
93,368 KB
testcase_09 AC 181 ms
93,076 KB
testcase_10 AC 100 ms
87,452 KB
testcase_11 AC 118 ms
92,684 KB
testcase_12 AC 160 ms
93,388 KB
testcase_13 AC 179 ms
93,224 KB
testcase_14 AC 175 ms
92,788 KB
testcase_15 AC 110 ms
92,168 KB
testcase_16 AC 178 ms
93,024 KB
testcase_17 AC 178 ms
92,980 KB
testcase_18 AC 177 ms
93,340 KB
testcase_19 AC 180 ms
92,852 KB
testcase_20 AC 178 ms
93,188 KB
testcase_21 AC 177 ms
93,128 KB
testcase_22 AC 177 ms
92,984 KB
testcase_23 AC 176 ms
93,540 KB
testcase_24 AC 176 ms
92,640 KB
testcase_25 AC 178 ms
92,856 KB
testcase_26 AC 176 ms
93,048 KB
testcase_27 AC 176 ms
92,880 KB
testcase_28 AC 176 ms
93,444 KB
testcase_29 AC 177 ms
92,948 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