結果

問題 No.1114 足し算盆に返らず
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-08 13:15:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2023-09-30 19:00:19
合計ジャッジ時間 10,331 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
80,028 KB
testcase_01 AC 90 ms
80,256 KB
testcase_02 AC 91 ms
80,072 KB
testcase_03 AC 87 ms
78,872 KB
testcase_04 AC 90 ms
79,960 KB
testcase_05 AC 86 ms
77,688 KB
testcase_06 AC 89 ms
80,068 KB
testcase_07 AC 90 ms
80,092 KB
testcase_08 AC 87 ms
78,184 KB
testcase_09 AC 85 ms
77,392 KB
testcase_10 AC 87 ms
78,312 KB
testcase_11 AC 85 ms
76,236 KB
testcase_12 AC 88 ms
78,764 KB
testcase_13 AC 91 ms
79,956 KB
testcase_14 AC 83 ms
76,428 KB
testcase_15 AC 86 ms
77,360 KB
testcase_16 AC 88 ms
78,004 KB
testcase_17 AC 89 ms
78,792 KB
testcase_18 AC 83 ms
76,248 KB
testcase_19 AC 87 ms
77,372 KB
testcase_20 AC 91 ms
79,880 KB
testcase_21 AC 84 ms
77,344 KB
testcase_22 AC 73 ms
71,152 KB
testcase_23 AC 73 ms
71,080 KB
testcase_24 AC 73 ms
71,124 KB
testcase_25 AC 72 ms
71,256 KB
testcase_26 AC 72 ms
71,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print(*[i for i in range(1,n+1) if i%2])
0