結果

問題 No.2371 最大の試練それは起床
ユーザー hosinohitohosinohito
提出日時 2023-07-07 21:56:58
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-07-21 17:51:25
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
41,520 KB
testcase_01 AC 82 ms
40,320 KB
testcase_02 AC 81 ms
39,680 KB
testcase_03 AC 83 ms
41,636 KB
testcase_04 AC 80 ms
41,640 KB
testcase_05 AC 81 ms
40,064 KB
testcase_06 AC 79 ms
39,424 KB
testcase_07 AC 80 ms
41,636 KB
testcase_08 AC 79 ms
39,424 KB
testcase_09 AC 80 ms
40,064 KB
testcase_10 AC 80 ms
41,508 KB
testcase_11 AC 81 ms
41,588 KB
testcase_12 AC 81 ms
41,508 KB
testcase_13 AC 81 ms
41,596 KB
testcase_14 AC 82 ms
40,064 KB
testcase_15 AC 80 ms
41,584 KB
testcase_16 AC 82 ms
39,424 KB
testcase_17 AC 81 ms
41,632 KB
testcase_18 AC 78 ms
39,552 KB
testcase_19 AC 79 ms
39,424 KB
testcase_20 AC 83 ms
39,424 KB
testcase_21 AC 81 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

process.stdin.setEncoding("utf8");

var reader = require("readline").createInterface({
  input: process.stdin,
});

const outputYes = ()=>console.log('Yes');
const outputLate = ()=>console.log('Late');
const outputNo = ()=>console.log('No');

reader.on("line", (line) => {
    const inputs = line.split(' ');
    if(inputs[0]<7){
        outputYes();
        return;
    }
    if(inputs[0]==7){
        if(inputs[1]<30){
            outputYes();
        }else{
            outputLate();
        }
        return;
    }
    if(inputs[0]==8){
        if(inputs[1]<30){
            outputLate();
        }else{
            outputNo();
        }
        return;
    }
    if(inputs[0]>8){
        outputNo();
        return;
    }
});

0