結果

問題 No.1114 足し算盆に返らず
ユーザー tomoyaatcodertomoyaatcoder
提出日時 2020-08-01 03:43:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 73,828 KB
最終ジャッジ日時 2024-07-07 03:09:57
合計ジャッジ時間 17,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
73,224 KB
testcase_01 AC 47 ms
73,332 KB
testcase_02 AC 47 ms
73,160 KB
testcase_03 AC 47 ms
71,080 KB
testcase_04 AC 47 ms
72,236 KB
testcase_05 AC 45 ms
66,532 KB
testcase_06 AC 48 ms
71,892 KB
testcase_07 AC 50 ms
71,756 KB
testcase_08 AC 45 ms
68,584 KB
testcase_09 AC 43 ms
67,388 KB
testcase_10 AC 44 ms
68,488 KB
testcase_11 AC 44 ms
62,356 KB
testcase_12 AC 48 ms
69,544 KB
testcase_13 AC 46 ms
72,940 KB
testcase_14 AC 43 ms
62,944 KB
testcase_15 AC 44 ms
66,040 KB
testcase_16 AC 46 ms
68,548 KB
testcase_17 AC 46 ms
70,196 KB
testcase_18 AC 42 ms
65,692 KB
testcase_19 AC 46 ms
66,472 KB
testcase_20 AC 47 ms
73,828 KB
testcase_21 AC 44 ms
65,256 KB
testcase_22 AC 33 ms
53,284 KB
testcase_23 AC 33 ms
53,104 KB
testcase_24 AC 33 ms
51,812 KB
testcase_25 AC 36 ms
51,864 KB
testcase_26 AC 33 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_ok(a):
    if a % 2 == 0 and a // 2 % 2 == 0:
        return True

N = int(input())

ans1 = [i for i in range(1, N + 1, 2)]
# if is_ok(N):
#     ans1.append(N)
print(*ans1)
0