結果
| 問題 | No.969 じゃんけん |
| コンテスト | |
| ユーザー |
siderite1994
|
| 提出日時 | 2020-02-11 18:22:18 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 125 bytes |
| 記録 | |
| コンパイル時間 | 56 ms |
| コンパイル使用メモリ | 14,976 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2026-09-07 08:38:29 |
| 合計ジャッジ時間 | 1,105 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | WA * 4 |
ソースコード
import sys
input = sys.stdin.readline
x = int(input())
if x == 0 or x == 2 or x == 5:
print("Yes")
else:
print("No")
siderite1994