結果
| 問題 |
No.969 じゃんけん
|
| コンテスト | |
| ユーザー |
ws1560234564016
|
| 提出日時 | 2020-01-23 23:11:28 |
| 言語 | JavaScript (node v23.5.0) |
| 結果 |
AC
|
| 実行時間 | 61 ms / 2,000 ms |
| コード長 | 201 bytes |
| コンパイル時間 | 304 ms |
| コンパイル使用メモリ | 7,208 KB |
| 実行使用メモリ | 40,824 KB |
| 最終ジャッジ日時 | 2024-10-13 01:29:37 |
| 合計ジャッジ時間 | 1,158 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 4 |
ソースコード
function Main (input) {
input = parseInt(input, 10);
input == 10 || input == 4 || input == 0 ? console.log("Yes") : console.log("No");
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
ws1560234564016