結果

問題 No.2655 Increasing Strides
ユーザー june19312june19312
提出日時 2024-03-01 21:57:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 113 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 53,516 KB
最終ジャッジ日時 2024-09-29 13:51:50
合計ジャッジ時間 2,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,240 KB
testcase_01 AC 38 ms
53,484 KB
testcase_02 AC 37 ms
52,904 KB
testcase_03 AC 37 ms
52,552 KB
testcase_04 AC 37 ms
52,976 KB
testcase_05 AC 37 ms
52,564 KB
testcase_06 AC 38 ms
52,208 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,608 KB
testcase_09 AC 37 ms
52,084 KB
testcase_10 WA -
testcase_11 AC 37 ms
52,180 KB
testcase_12 AC 37 ms
52,556 KB
testcase_13 AC 36 ms
52,480 KB
testcase_14 AC 35 ms
52,096 KB
testcase_15 WA -
testcase_16 AC 38 ms
52,764 KB
testcase_17 AC 36 ms
51,564 KB
testcase_18 WA -
testcase_19 AC 35 ms
51,908 KB
testcase_20 AC 37 ms
52,008 KB
testcase_21 AC 36 ms
52,424 KB
testcase_22 AC 38 ms
53,156 KB
testcase_23 WA -
testcase_24 AC 37 ms
52,368 KB
testcase_25 AC 37 ms
52,792 KB
testcase_26 AC 37 ms
52,512 KB
testcase_27 WA -
testcase_28 AC 37 ms
52,952 KB
testcase_29 AC 37 ms
52,564 KB
testcase_30 WA -
testcase_31 AC 38 ms
52,148 KB
testcase_32 AC 38 ms
52,532 KB
testcase_33 AC 38 ms
53,148 KB
testcase_34 AC 37 ms
52,900 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

if N < 7:
    print("No")
    exit()

N-=7

if N%4 == 0:
    print("Yes")
else:
    print("No")
0