結果

問題 No.1114 足し算盆に返らず
ユーザー 👑 KazunKazun
提出日時 2020-07-17 21:39:23
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 56 bytes
コンパイル時間 1,104 ms
コンパイル使用メモリ 86,968 KB
実行使用メモリ 76,484 KB
最終ジャッジ日時 2023-08-20 00:11:32
合計ジャッジ時間 8,207 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
76,484 KB
testcase_01 AC 74 ms
76,460 KB
testcase_02 AC 73 ms
76,072 KB
testcase_03 AC 73 ms
76,244 KB
testcase_04 AC 73 ms
76,452 KB
testcase_05 AC 72 ms
76,084 KB
testcase_06 AC 73 ms
76,268 KB
testcase_07 AC 74 ms
76,296 KB
testcase_08 AC 73 ms
76,036 KB
testcase_09 AC 72 ms
76,084 KB
testcase_10 AC 72 ms
76,160 KB
testcase_11 AC 71 ms
75,700 KB
testcase_12 AC 72 ms
76,252 KB
testcase_13 AC 71 ms
76,272 KB
testcase_14 AC 70 ms
75,732 KB
testcase_15 AC 72 ms
75,860 KB
testcase_16 AC 73 ms
76,004 KB
testcase_17 AC 74 ms
76,068 KB
testcase_18 AC 72 ms
75,520 KB
testcase_19 AC 71 ms
75,944 KB
testcase_20 AC 74 ms
76,336 KB
testcase_21 AC 71 ms
75,840 KB
testcase_22 AC 68 ms
71,204 KB
testcase_23 AC 67 ms
71,264 KB
testcase_24 AC 69 ms
71,340 KB
testcase_25 AC 68 ms
71,336 KB
testcase_26 AC 69 ms
71,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
print(" ".join(map(str,range(1,N+1,2))))
0