結果

問題 No.1114 足し算盆に返らず
ユーザー wolgnikwolgnik
提出日時 2020-07-17 21:34:14
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 101 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 86,772 KB
実行使用メモリ 78,264 KB
最終ジャッジ日時 2023-08-19 23:58:30
合計ジャッジ時間 8,426 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
77,932 KB
testcase_01 AC 89 ms
77,960 KB
testcase_02 AC 87 ms
77,960 KB
testcase_03 AC 85 ms
77,832 KB
testcase_04 AC 87 ms
77,880 KB
testcase_05 AC 87 ms
77,428 KB
testcase_06 AC 92 ms
78,076 KB
testcase_07 AC 92 ms
77,888 KB
testcase_08 AC 90 ms
77,448 KB
testcase_09 AC 90 ms
77,148 KB
testcase_10 AC 87 ms
77,280 KB
testcase_11 AC 86 ms
76,596 KB
testcase_12 AC 92 ms
77,636 KB
testcase_13 AC 95 ms
78,188 KB
testcase_14 AC 87 ms
76,600 KB
testcase_15 AC 85 ms
77,036 KB
testcase_16 AC 85 ms
77,464 KB
testcase_17 AC 86 ms
77,452 KB
testcase_18 AC 81 ms
76,180 KB
testcase_19 AC 81 ms
77,260 KB
testcase_20 AC 88 ms
78,264 KB
testcase_21 AC 85 ms
77,120 KB
testcase_22 AC 72 ms
71,252 KB
testcase_23 AC 75 ms
71,348 KB
testcase_24 AC 71 ms
71,252 KB
testcase_25 AC 71 ms
71,500 KB
testcase_26 AC 71 ms
71,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
print(*[2 * x + 1 for x in range(-(-N // 2))])
0