結果

問題 No.201 yukicoderじゃんけん
ユーザー ontama_12ontama_12
提出日時 2016-09-28 17:40:15
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 880 bytes
コンパイル時間 30 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 39,296 KB
最終ジャッジ日時 2024-04-21 01:32:37
合計ジャッジ時間 1,999 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

    /////////////////////////////No.201 yukicoderじゃんけん
    //入力文字読み取り
    var inputall = require('fs').readFileSync('/dev/stdin', 'utf8');

    //すべて受け取り改行で区切って格納
    var input = inputall.split("\n");

    //AくんとBくんの名前、ゆるふわポイント、じゃんけんの手の情報をそれぞれの変数に格納
    var a_imfo = input[0].split(" ");
    var b_imfo = input[1].split(" ");

    //ゆるふわポイントを数値化
    var a_yurufuwapoint =parseInt ( a_imfo[1]);
    var b_yurufuwapoint = parseInt(b_imfo[1]);

    //ゆるふわポイントの大小で勝敗が決定、引き分けなら-1
    if (a_yurufuwapoint > b_yurufuwapoint) {
        console.log(a_imfo[0])
    } else if (a_yurufuwapoint < b_yurufuwapoint) {
        console.log(b_imfo[0])
    } else {
        console.log(-1)
}
0