結果

問題 No.2655 Increasing Strides
ユーザー chineristACchineristAC
提出日時 2024-03-01 21:22:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 56,112 KB
最終ジャッジ日時 2024-03-01 21:22:08
合計ジャッジ時間 3,171 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,112 KB
testcase_01 AC 44 ms
56,112 KB
testcase_02 AC 44 ms
56,112 KB
testcase_03 AC 44 ms
56,112 KB
testcase_04 AC 44 ms
56,112 KB
testcase_05 AC 46 ms
56,112 KB
testcase_06 AC 44 ms
56,112 KB
testcase_07 AC 46 ms
56,112 KB
testcase_08 AC 45 ms
56,112 KB
testcase_09 AC 45 ms
56,112 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 44 ms
56,112 KB
testcase_13 AC 44 ms
56,112 KB
testcase_14 AC 45 ms
56,112 KB
testcase_15 AC 45 ms
56,112 KB
testcase_16 AC 45 ms
56,112 KB
testcase_17 AC 46 ms
56,112 KB
testcase_18 WA -
testcase_19 AC 45 ms
56,112 KB
testcase_20 WA -
testcase_21 AC 46 ms
56,112 KB
testcase_22 AC 45 ms
56,112 KB
testcase_23 AC 45 ms
56,112 KB
testcase_24 AC 45 ms
56,112 KB
testcase_25 AC 45 ms
56,112 KB
testcase_26 AC 45 ms
56,112 KB
testcase_27 AC 44 ms
56,112 KB
testcase_28 AC 44 ms
56,112 KB
testcase_29 AC 44 ms
56,112 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 44 ms
56,112 KB
testcase_33 AC 44 ms
56,112 KB
testcase_34 AC 44 ms
56,112 KB
testcase_35 AC 44 ms
56,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())



N = int(input())

odd = (N+1)//2
even = N//2

if (3 <= odd and odd & 1 == 0) and 3 <= even:
    print("Yes")
else:
    print("No")
0