結果

問題 No.2655 Increasing Strides
ユーザー titiatitia
提出日時 2024-03-01 21:53:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,192 KB
最終ジャッジ日時 2024-09-29 13:51:08
合計ジャッジ時間 15,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 388 ms
44,896 KB
testcase_01 AC 392 ms
45,020 KB
testcase_02 AC 391 ms
45,120 KB
testcase_03 AC 400 ms
45,136 KB
testcase_04 AC 390 ms
45,188 KB
testcase_05 AC 405 ms
45,008 KB
testcase_06 AC 394 ms
45,144 KB
testcase_07 AC 421 ms
45,096 KB
testcase_08 AC 390 ms
45,112 KB
testcase_09 AC 399 ms
45,060 KB
testcase_10 AC 404 ms
45,008 KB
testcase_11 AC 392 ms
45,164 KB
testcase_12 AC 395 ms
45,044 KB
testcase_13 AC 390 ms
45,136 KB
testcase_14 AC 390 ms
45,096 KB
testcase_15 AC 388 ms
45,072 KB
testcase_16 AC 389 ms
45,072 KB
testcase_17 AC 390 ms
45,164 KB
testcase_18 AC 390 ms
45,112 KB
testcase_19 AC 405 ms
45,012 KB
testcase_20 AC 391 ms
45,192 KB
testcase_21 AC 381 ms
45,012 KB
testcase_22 AC 353 ms
45,120 KB
testcase_23 AC 361 ms
45,180 KB
testcase_24 AC 345 ms
44,960 KB
testcase_25 AC 351 ms
45,000 KB
testcase_26 AC 385 ms
44,996 KB
testcase_27 AC 350 ms
45,188 KB
testcase_28 AC 349 ms
45,160 KB
testcase_29 AC 353 ms
45,028 KB
testcase_30 AC 392 ms
45,132 KB
testcase_31 AC 393 ms
44,980 KB
testcase_32 AC 389 ms
45,004 KB
testcase_33 AC 390 ms
44,980 KB
testcase_34 AC 392 ms
45,072 KB
testcase_35 AC 399 ms
45,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

OK=set()

for i in range(10**6):
    if i>=7 and i%4==3:
        OK.add(i)
    if i>=6 and (i%8==6 or i%8==0):
        OK.add(i)

if N in OK and N-1 in OK:
    print("Yes")
else:
    print("No")
0