結果

問題 No.969 じゃんけん
ユーザー uni_pythonuni_python
提出日時 2020-09-13 20:04:10
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 87,216 KB
実行使用メモリ 71,556 KB
最終ジャッジ日時 2023-09-03 23:54:38
合計ジャッジ時間 1,371 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,316 KB
testcase_01 AC 71 ms
71,556 KB
testcase_02 AC 72 ms
71,312 KB
testcase_03 AC 70 ms
71,284 KB
testcase_04 AC 70 ms
71,308 KB
testcase_05 AC 71 ms
71,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    x=I()
    
    if x==0 or x==4 or x==10:
        print("Yes")
    else:
        print("No")


main()
0