結果

問題 No.1462 最弱WEAKER
ユーザー mono_0812mono_0812
提出日時 2021-04-02 22:51:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-23 20:56:03
合計ジャッジ時間 1,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 33 ms
10,624 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 34 ms
10,624 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 32 ms
10,624 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 WA -
testcase_19 AC 32 ms
10,624 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return map(int, input().split())
def LIIS(): return list(map(int, input().split()))
def ZER(N): return [False for _ in range(N)]


INF = 10**30
MOD = 10**9+7


#         V
#    / ̄ψ ̄\
#   | 合格祈願 |
#   |_____|


##############################################################################


n=II()
if n%3==1 or n==2:
    print("NO")
else:
    print("NO")
0