結果

問題 No.2655 Increasing Strides
ユーザー detteiuudetteiuu
提出日時 2024-08-04 20:31:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 59,628 KB
最終ジャッジ日時 2024-08-04 20:31:20
合計ジャッジ時間 3,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,308 KB
testcase_01 AC 34 ms
52,816 KB
testcase_02 AC 33 ms
51,952 KB
testcase_03 AC 36 ms
53,212 KB
testcase_04 AC 36 ms
53,100 KB
testcase_05 AC 33 ms
53,216 KB
testcase_06 AC 34 ms
52,952 KB
testcase_07 AC 36 ms
52,132 KB
testcase_08 AC 34 ms
52,836 KB
testcase_09 AC 32 ms
52,068 KB
testcase_10 AC 36 ms
52,216 KB
testcase_11 AC 37 ms
52,140 KB
testcase_12 AC 35 ms
53,780 KB
testcase_13 AC 34 ms
52,192 KB
testcase_14 AC 34 ms
52,068 KB
testcase_15 AC 33 ms
52,272 KB
testcase_16 AC 35 ms
52,896 KB
testcase_17 AC 36 ms
52,756 KB
testcase_18 AC 37 ms
51,824 KB
testcase_19 AC 38 ms
57,788 KB
testcase_20 AC 40 ms
59,628 KB
testcase_21 AC 41 ms
58,684 KB
testcase_22 AC 40 ms
59,448 KB
testcase_23 AC 38 ms
59,328 KB
testcase_24 AC 38 ms
58,484 KB
testcase_25 AC 39 ms
58,380 KB
testcase_26 AC 37 ms
58,264 KB
testcase_27 AC 39 ms
57,928 KB
testcase_28 AC 38 ms
57,716 KB
testcase_29 AC 39 ms
57,904 KB
testcase_30 AC 39 ms
58,260 KB
testcase_31 AC 36 ms
57,988 KB
testcase_32 AC 38 ms
58,608 KB
testcase_33 AC 40 ms
58,124 KB
testcase_34 AC 43 ms
59,156 KB
testcase_35 AC 39 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

odd = 0
even = 0
for i in range(N):
    if i % 2 == 0:
        odd += 1
    else:
        even += i+1

if 4 <= odd and odd%2 == 0 and even//2%2 == 0:
    print("Yes")
else:
    print("No")
0