結果

問題 No.558 575検出するやつ
ユーザー mlpj56dmlpj56d
提出日時 2017-11-27 05:23:34
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 39,424 KB
最終ジャッジ日時 2024-04-21 01:59:59
合計ジャッジ時間 2,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 61 ms
39,040 KB
testcase_02 WA -
testcase_03 AC 61 ms
39,168 KB
testcase_04 AC 65 ms
38,912 KB
testcase_05 AC 60 ms
39,168 KB
testcase_06 AC 60 ms
38,912 KB
testcase_07 AC 62 ms
39,168 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 59 ms
39,168 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 64 ms
38,912 KB
testcase_17 AC 61 ms
38,912 KB
testcase_18 AC 61 ms
39,424 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    if( input.indexOf("575" == -1)) {
        console.log("NO");
    } else{
        console.log("YES");
    }
}

Main(require("fs").readFileSync("/dev/stdin","utf8"));
0