結果

問題 No.1528 Not 1
ユーザー raven7959raven7959
提出日時 2021-08-07 23:21:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 75 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 81,608 KB
実行使用メモリ 63,488 KB
最終ジャッジ日時 2023-10-18 23:40:45
合計ジャッジ時間 5,472 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 46 ms
63,176 KB
testcase_02 AC 41 ms
59,924 KB
testcase_03 AC 43 ms
60,124 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 44 ms
60,488 KB
testcase_07 AC 45 ms
63,248 KB
testcase_08 WA -
testcase_09 AC 41 ms
59,520 KB
testcase_10 AC 43 ms
60,228 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 37 ms
53,364 KB
testcase_16 AC 37 ms
53,364 KB
testcase_17 AC 37 ms
53,364 KB
testcase_18 AC 47 ms
63,476 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
L=[str(2*i) for i in range(1,int(N/2)+1)]
print(" ".join(L))
0