結果

問題 No.3093 Please GCD
ユーザー PNJPNJ
提出日時 2023-11-25 03:13:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 60 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 91,472 KB
平均クエリ数 8098.53
最終ジャッジ日時 2023-11-25 03:13:54
合計ジャッジ時間 7,527 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
69,332 KB
testcase_01 AC 63 ms
69,332 KB
testcase_02 AC 84 ms
79,908 KB
testcase_03 AC 160 ms
91,360 KB
testcase_04 AC 155 ms
91,360 KB
testcase_05 AC 177 ms
91,360 KB
testcase_06 AC 153 ms
91,472 KB
testcase_07 AC 151 ms
91,360 KB
testcase_08 AC 148 ms
91,360 KB
testcase_09 AC 156 ms
91,360 KB
testcase_10 AC 64 ms
69,332 KB
testcase_11 AC 83 ms
82,272 KB
testcase_12 AC 135 ms
88,672 KB
testcase_13 AC 149 ms
91,360 KB
testcase_14 AC 150 ms
91,360 KB
testcase_15 AC 75 ms
79,908 KB
testcase_16 AC 151 ms
91,360 KB
testcase_17 AC 149 ms
91,360 KB
testcase_18 AC 149 ms
91,360 KB
testcase_19 AC 181 ms
91,360 KB
testcase_20 AC 148 ms
91,360 KB
testcase_21 AC 151 ms
91,360 KB
testcase_22 AC 151 ms
91,360 KB
testcase_23 AC 151 ms
91,360 KB
testcase_24 AC 149 ms
91,360 KB
testcase_25 AC 158 ms
91,360 KB
testcase_26 AC 147 ms
91,360 KB
testcase_27 AC 148 ms
91,360 KB
testcase_28 AC 150 ms
91,360 KB
testcase_29 AC 162 ms
91,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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