結果

問題 No.558 575検出するやつ
ユーザー mlpj56dmlpj56d
提出日時 2017-11-27 05:23:34
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 32 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 39,424 KB
最終ジャッジ日時 2024-10-13 00:28:30
合計ジャッジ時間 1,885 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 60 ms
39,168 KB
testcase_02 WA -
testcase_03 AC 57 ms
39,168 KB
testcase_04 AC 54 ms
39,296 KB
testcase_05 AC 56 ms
39,168 KB
testcase_06 AC 53 ms
39,296 KB
testcase_07 AC 55 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 57 ms
38,912 KB
testcase_17 AC 55 ms
39,168 KB
testcase_18 AC 56 ms
39,168 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