結果

問題 No.1114 足し算盆に返らず
ユーザー tamatotamato
提出日時 2020-07-18 13:22:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 99 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,516 KB
最終ジャッジ日時 2024-05-07 23:42:17
合計ジャッジ時間 16,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
76,728 KB
testcase_01 AC 55 ms
78,096 KB
testcase_02 AC 54 ms
77,488 KB
testcase_03 AC 54 ms
74,428 KB
testcase_04 AC 55 ms
75,768 KB
testcase_05 AC 50 ms
69,460 KB
testcase_06 AC 55 ms
77,732 KB
testcase_07 AC 54 ms
76,060 KB
testcase_08 AC 49 ms
70,456 KB
testcase_09 AC 50 ms
69,440 KB
testcase_10 AC 51 ms
70,320 KB
testcase_11 AC 46 ms
62,696 KB
testcase_12 AC 52 ms
71,516 KB
testcase_13 AC 54 ms
78,108 KB
testcase_14 AC 47 ms
64,780 KB
testcase_15 AC 50 ms
69,468 KB
testcase_16 AC 51 ms
70,308 KB
testcase_17 AC 51 ms
71,920 KB
testcase_18 AC 47 ms
66,208 KB
testcase_19 AC 50 ms
68,436 KB
testcase_20 AC 54 ms
78,516 KB
testcase_21 AC 49 ms
67,904 KB
testcase_22 AC 36 ms
52,176 KB
testcase_23 AC 35 ms
52,704 KB
testcase_24 AC 35 ms
53,212 KB
testcase_25 AC 35 ms
53,352 KB
testcase_26 AC 36 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=[]
for i in range(1, N+1):
    if i&1:
        ans.append(i)
print(*ans)        
0