結果

問題 No.1114 足し算盆に返らず
ユーザー tomoyaatcodertomoyaatcoder
提出日時 2020-08-01 03:40:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 74,180 KB
最終ジャッジ日時 2024-07-07 03:08:15
合計ジャッジ時間 18,213 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 50 ms
72,320 KB
testcase_02 AC 53 ms
72,320 KB
testcase_03 AC 48 ms
70,144 KB
testcase_04 AC 51 ms
71,936 KB
testcase_05 WA -
testcase_06 AC 51 ms
71,808 KB
testcase_07 AC 50 ms
71,680 KB
testcase_08 AC 49 ms
67,840 KB
testcase_09 AC 48 ms
66,432 KB
testcase_10 AC 48 ms
67,968 KB
testcase_11 WA -
testcase_12 AC 49 ms
68,992 KB
testcase_13 AC 52 ms
72,704 KB
testcase_14 AC 47 ms
62,848 KB
testcase_15 WA -
testcase_16 AC 49 ms
66,816 KB
testcase_17 AC 48 ms
68,864 KB
testcase_18 WA -
testcase_19 AC 48 ms
65,792 KB
testcase_20 AC 54 ms
72,704 KB
testcase_21 AC 47 ms
65,408 KB
testcase_22 AC 36 ms
51,840 KB
testcase_23 AC 37 ms
51,840 KB
testcase_24 AC 36 ms
52,236 KB
testcase_25 WA -
testcase_26 AC 35 ms
51,840 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