結果

問題 No.2655 Increasing Strides
ユーザー rlangevinrlangevin
提出日時 2024-03-01 21:32:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 53,860 KB
最終ジャッジ日時 2024-09-29 13:33:59
合計ジャッジ時間 2,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,592 KB
testcase_01 AC 39 ms
52,180 KB
testcase_02 AC 38 ms
53,632 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,980 KB
testcase_05 AC 37 ms
53,144 KB
testcase_06 WA -
testcase_07 AC 36 ms
52,356 KB
testcase_08 AC 38 ms
51,808 KB
testcase_09 AC 38 ms
52,428 KB
testcase_10 WA -
testcase_11 AC 37 ms
52,492 KB
testcase_12 AC 36 ms
51,812 KB
testcase_13 AC 35 ms
53,548 KB
testcase_14 WA -
testcase_15 AC 34 ms
52,568 KB
testcase_16 AC 33 ms
53,088 KB
testcase_17 AC 33 ms
52,824 KB
testcase_18 WA -
testcase_19 AC 34 ms
53,412 KB
testcase_20 AC 33 ms
53,132 KB
testcase_21 AC 34 ms
53,152 KB
testcase_22 WA -
testcase_23 AC 33 ms
52,124 KB
testcase_24 AC 33 ms
51,880 KB
testcase_25 AC 33 ms
52,884 KB
testcase_26 WA -
testcase_27 AC 33 ms
53,024 KB
testcase_28 AC 34 ms
51,900 KB
testcase_29 AC 35 ms
52,344 KB
testcase_30 WA -
testcase_31 AC 35 ms
52,124 KB
testcase_32 AC 33 ms
52,280 KB
testcase_33 AC 34 ms
52,184 KB
testcase_34 WA -
testcase_35 AC 33 ms
52,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
No, Ne = -1, -1
if N % 2:
    No, Ne = N, N - 1
else:
    No, Ne = N - 1, N
    
def f(N):
    if N % 2:
        if (N // 2 + 1)**2 % 2 == 0:
            return True
        else:
            return False
    else:
        if (N//2) * (N//2 - 1) % 4 == 0:
            return True
        else:
            return False
    
ans = f(No) and f(Ne)
print("Yes") if ans else print("No")
0