結果
問題 | No.969 じゃんけん |
ユーザー | Takuya-Ampi |
提出日時 | 2020-03-01 23:32:03 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 592 bytes |
コンパイル時間 | 35 ms |
コンパイル使用メモリ | 6,692 KB |
実行使用メモリ | 42,432 KB |
最終ジャッジ日時 | 2024-10-13 01:31:25 |
合計ジャッジ時間 | 905 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 77 ms
42,300 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 66 ms
42,300 KB |
testcase_04 | WA | - |
testcase_05 | AC | 68 ms
42,224 KB |
ソースコード
// おまじない const reader = require("readline").createInterface({ input: process.stdin, output: process.stdout }); // 入力の処理 複数行入れたらそれが配列に入る。 // (例)aiueo kakikukeko sasisuseso => ["aiueo", "kakikukeko", "sasisuseso"] let lines = []; reader.on("line", line => { lines.push(line); }); // 出力の処理を書いていく reader.on("close", () => { if (lines[0] === 0 || lines[0] === 4 || lines[0] ===10){ console.log('Yes'); }else { console.log('No'); } }); // 実行するときは node index.js(jsファイルの名前)