結果

問題 No.3093 Please GCD
ユーザー ShirotsumeShirotsume
提出日時 2022-04-02 00:03:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 93,368 KB
平均クエリ数 10000.00
最終ジャッジ日時 2024-04-30 16:54:58
合計ジャッジ時間 9,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
92,844 KB
testcase_01 AC 152 ms
92,452 KB
testcase_02 AC 176 ms
93,028 KB
testcase_03 AC 238 ms
92,388 KB
testcase_04 AC 238 ms
92,184 KB
testcase_05 AC 245 ms
92,628 KB
testcase_06 AC 239 ms
92,932 KB
testcase_07 AC 245 ms
92,444 KB
testcase_08 AC 243 ms
93,112 KB
testcase_09 AC 243 ms
92,904 KB
testcase_10 AC 155 ms
92,528 KB
testcase_11 AC 185 ms
93,160 KB
testcase_12 AC 227 ms
92,320 KB
testcase_13 AC 239 ms
93,300 KB
testcase_14 AC 236 ms
92,544 KB
testcase_15 AC 166 ms
93,368 KB
testcase_16 AC 246 ms
92,688 KB
testcase_17 AC 241 ms
93,304 KB
testcase_18 AC 243 ms
92,240 KB
testcase_19 AC 240 ms
92,552 KB
testcase_20 AC 245 ms
92,744 KB
testcase_21 AC 246 ms
93,036 KB
testcase_22 AC 241 ms
92,716 KB
testcase_23 AC 240 ms
92,828 KB
testcase_24 AC 238 ms
92,564 KB
testcase_25 AC 240 ms
92,268 KB
testcase_26 AC 240 ms
92,252 KB
testcase_27 AC 240 ms
92,980 KB
testcase_28 AC 243 ms
92,876 KB
testcase_29 AC 244 ms
92,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())


n = ii()

for i in range(1, 10001):
    print('!', i, flush = True)
    
0