結果

問題 No.3093 Please GCD
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-08-06 18:33:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 1,433 ms
コンパイル使用メモリ 10,484 KB
実行使用メモリ 25,164 KB
平均クエリ数 8098.53
最終ジャッジ日時 2023-10-14 19:01:46
合計ジャッジ時間 6,892 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
24,924 KB
testcase_01 AC 45 ms
24,352 KB
testcase_02 AC 47 ms
25,164 KB
testcase_03 AC 114 ms
24,556 KB
testcase_04 AC 112 ms
25,136 KB
testcase_05 AC 112 ms
24,480 KB
testcase_06 AC 113 ms
24,744 KB
testcase_07 AC 113 ms
24,736 KB
testcase_08 AC 112 ms
24,576 KB
testcase_09 AC 113 ms
24,880 KB
testcase_10 AC 46 ms
24,540 KB
testcase_11 AC 52 ms
24,948 KB
testcase_12 AC 95 ms
25,024 KB
testcase_13 AC 113 ms
24,680 KB
testcase_14 AC 113 ms
24,820 KB
testcase_15 AC 47 ms
24,644 KB
testcase_16 AC 113 ms
24,884 KB
testcase_17 AC 114 ms
24,520 KB
testcase_18 AC 114 ms
25,072 KB
testcase_19 AC 113 ms
24,632 KB
testcase_20 AC 113 ms
24,888 KB
testcase_21 AC 112 ms
24,556 KB
testcase_22 AC 114 ms
24,684 KB
testcase_23 AC 114 ms
24,644 KB
testcase_24 AC 114 ms
24,596 KB
testcase_25 AC 114 ms
24,440 KB
testcase_26 AC 114 ms
24,476 KB
testcase_27 AC 114 ms
25,044 KB
testcase_28 AC 112 ms
24,668 KB
testcase_29 AC 114 ms
25,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
from bisect import *
import sys,math

N = int(input())
for i in range(1,N+1):
    print(f'! {i}')
0