結果

問題 No.969 じゃんけん
ユーザー ws1560234564016ws1560234564016
提出日時 2020-01-23 23:11:28
言語 JavaScript
(node v21.7.1)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
39,168 KB
testcase_01 AC 57 ms
39,040 KB
testcase_02 AC 59 ms
39,040 KB
testcase_03 AC 61 ms
39,296 KB
testcase_04 AC 59 ms
39,040 KB
testcase_05 AC 60 ms
40,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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"));
0