結果

問題 No.1114 足し算盆に返らず
ユーザー 👑 H20H20
提出日時 2021-04-09 14:20:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 45 bytes
コンパイル時間 1,314 ms
コンパイル使用メモリ 87,204 KB
実行使用メモリ 78,408 KB
最終ジャッジ日時 2023-09-07 02:42:39
合計ジャッジ時間 9,874 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
78,072 KB
testcase_01 AC 84 ms
78,236 KB
testcase_02 AC 81 ms
78,408 KB
testcase_03 AC 82 ms
78,064 KB
testcase_04 AC 83 ms
78,136 KB
testcase_05 AC 80 ms
77,368 KB
testcase_06 AC 82 ms
78,304 KB
testcase_07 AC 83 ms
78,360 KB
testcase_08 AC 83 ms
77,704 KB
testcase_09 AC 79 ms
77,544 KB
testcase_10 AC 81 ms
77,728 KB
testcase_11 AC 78 ms
76,708 KB
testcase_12 AC 80 ms
77,924 KB
testcase_13 AC 84 ms
78,208 KB
testcase_14 AC 77 ms
76,816 KB
testcase_15 AC 79 ms
77,304 KB
testcase_16 AC 81 ms
77,340 KB
testcase_17 AC 81 ms
77,912 KB
testcase_18 AC 80 ms
76,720 KB
testcase_19 AC 81 ms
77,340 KB
testcase_20 AC 83 ms
78,352 KB
testcase_21 AC 80 ms
77,436 KB
testcase_22 AC 69 ms
71,556 KB
testcase_23 AC 67 ms
71,400 KB
testcase_24 AC 69 ms
71,104 KB
testcase_25 AC 68 ms
71,588 KB
testcase_26 AC 71 ms
71,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print(*list(range(1,N+1,2)))
0