結果

問題 No.2655 Increasing Strides
ユーザー hiro1729hiro1729
提出日時 2024-03-01 21:25:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 59,528 KB
最終ジャッジ日時 2024-09-29 13:27:59
合計ジャッジ時間 2,513 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,624 KB
testcase_01 AC 38 ms
51,436 KB
testcase_02 AC 37 ms
52,024 KB
testcase_03 AC 37 ms
52,296 KB
testcase_04 AC 37 ms
53,164 KB
testcase_05 AC 37 ms
52,092 KB
testcase_06 AC 37 ms
53,120 KB
testcase_07 AC 37 ms
51,692 KB
testcase_08 AC 37 ms
51,932 KB
testcase_09 AC 37 ms
52,156 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 37 ms
52,772 KB
testcase_14 AC 38 ms
52,328 KB
testcase_15 AC 37 ms
52,876 KB
testcase_16 AC 38 ms
53,976 KB
testcase_17 AC 37 ms
52,844 KB
testcase_18 WA -
testcase_19 AC 40 ms
58,136 KB
testcase_20 WA -
testcase_21 AC 40 ms
58,528 KB
testcase_22 AC 41 ms
58,400 KB
testcase_23 AC 39 ms
58,384 KB
testcase_24 AC 38 ms
58,672 KB
testcase_25 AC 41 ms
57,788 KB
testcase_26 AC 41 ms
59,528 KB
testcase_27 AC 41 ms
58,340 KB
testcase_28 AC 41 ms
59,244 KB
testcase_29 AC 41 ms
59,352 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 40 ms
58,876 KB
testcase_33 AC 40 ms
58,304 KB
testcase_34 AC 41 ms
58,584 KB
testcase_35 AC 40 ms
59,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(range(1, N + 1, 2))
B = list(range(2, N + 1, 2))
if sum(A) % 2 or len(A) <= 2:
	exit(print("No"))
if sum(B) % 2 or len(B) <= 2:
	exit(print("No"))
print("Yes")
0