結果

問題 No.3093 Please GCD
ユーザー ShirotsumeShirotsume
提出日時 2022-04-02 00:03:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 92,920 KB
平均クエリ数 10000.00
最終ジャッジ日時 2024-11-20 13:48:23
合計ジャッジ時間 8,697 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
92,584 KB
testcase_01 AC 143 ms
92,112 KB
testcase_02 AC 167 ms
92,492 KB
testcase_03 AC 227 ms
92,544 KB
testcase_04 AC 234 ms
92,204 KB
testcase_05 AC 229 ms
92,496 KB
testcase_06 AC 229 ms
92,888 KB
testcase_07 AC 238 ms
92,144 KB
testcase_08 AC 232 ms
92,920 KB
testcase_09 AC 228 ms
92,704 KB
testcase_10 AC 144 ms
92,904 KB
testcase_11 AC 176 ms
92,708 KB
testcase_12 AC 212 ms
92,252 KB
testcase_13 AC 233 ms
92,484 KB
testcase_14 AC 228 ms
92,532 KB
testcase_15 AC 158 ms
92,872 KB
testcase_16 AC 228 ms
92,296 KB
testcase_17 AC 233 ms
92,248 KB
testcase_18 AC 232 ms
92,424 KB
testcase_19 AC 231 ms
91,984 KB
testcase_20 AC 237 ms
92,436 KB
testcase_21 AC 231 ms
92,544 KB
testcase_22 AC 233 ms
92,588 KB
testcase_23 AC 230 ms
92,420 KB
testcase_24 AC 234 ms
92,700 KB
testcase_25 AC 236 ms
92,312 KB
testcase_26 AC 234 ms
92,300 KB
testcase_27 AC 230 ms
92,060 KB
testcase_28 AC 234 ms
92,592 KB
testcase_29 AC 233 ms
92,492 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