結果

問題 No.3093 Please GCD
ユーザー PNJPNJ
提出日時 2023-11-25 03:13:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 60 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 92,760 KB
平均クエリ数 8098.53
最終ジャッジ日時 2024-09-26 10:10:47
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
68,056 KB
testcase_01 AC 60 ms
68,824 KB
testcase_02 AC 81 ms
79,064 KB
testcase_03 AC 154 ms
91,864 KB
testcase_04 AC 153 ms
92,640 KB
testcase_05 AC 153 ms
92,632 KB
testcase_06 AC 149 ms
92,248 KB
testcase_07 AC 154 ms
91,992 KB
testcase_08 AC 150 ms
92,504 KB
testcase_09 AC 150 ms
92,712 KB
testcase_10 AC 58 ms
68,312 KB
testcase_11 AC 86 ms
83,160 KB
testcase_12 AC 131 ms
89,816 KB
testcase_13 AC 149 ms
92,444 KB
testcase_14 AC 150 ms
92,280 KB
testcase_15 AC 76 ms
79,312 KB
testcase_16 AC 148 ms
92,480 KB
testcase_17 AC 150 ms
91,920 KB
testcase_18 AC 150 ms
92,448 KB
testcase_19 AC 148 ms
92,248 KB
testcase_20 AC 149 ms
92,464 KB
testcase_21 AC 151 ms
92,504 KB
testcase_22 AC 150 ms
92,120 KB
testcase_23 AC 149 ms
92,760 KB
testcase_24 AC 150 ms
92,504 KB
testcase_25 AC 149 ms
92,248 KB
testcase_26 AC 152 ms
92,504 KB
testcase_27 AC 150 ms
92,248 KB
testcase_28 AC 150 ms
92,612 KB
testcase_29 AC 150 ms
92,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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