結果

問題 No.969 じゃんけん
ユーザー yomo3yomo3
提出日時 2020-01-21 04:27:39
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 10,608 KB
実行使用メモリ 7,884 KB
最終ジャッジ日時 2023-09-17 06:13:23
合計ジャッジ時間 751 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,804 KB
testcase_01 AC 13 ms
7,796 KB
testcase_02 AC 12 ms
7,696 KB
testcase_03 AC 13 ms
7,804 KB
testcase_04 AC 13 ms
7,884 KB
testcase_05 AC 12 ms
7,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

if sys.platform == 'ios':
	sys.stdin = open('in.txt')
sys.setrecursionlimit(10**6)

x = int(input())
ans = 'Yes'if x in [0,4,10] else 'No'
print(ans)
0