結果

問題 No.264 じゃんけん
ユーザー 濱田孝治濱田孝治
提出日時 2020-07-30 15:34:03
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 643 bytes
コンパイル時間 8,817 ms
コンパイル使用メモリ 229,032 KB
実行使用メモリ 41,208 KB
最終ジャッジ日時 2024-12-31 16:16:27
合計ジャッジ時間 8,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
39,296 KB
testcase_01 AC 58 ms
39,296 KB
testcase_02 AC 58 ms
39,552 KB
testcase_03 AC 58 ms
39,552 KB
testcase_04 AC 60 ms
39,168 KB
testcase_05 AC 61 ms
41,208 KB
testcase_06 AC 57 ms
39,040 KB
testcase_07 AC 58 ms
39,296 KB
testcase_08 AC 59 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
  // inputにはすべての入力の文字列が与えられるので必要に応じて input.split("\n") などで分割する。
  var data = input.split("\n");
  var first_line: string = data[0].split(" ");
  var n: number = Number(first_line[0]);
  var k: number = Number(first_line[1]);
  var result: String = "";

  switch (n - k) {
    case 2:
    case -1:
      result = "Won";
      break;
    case 1:
    case -2:
      result = "Lost";
      break;
    case 0:
      result = "Drew";
      break;
  }

  console.log(result);
}
// Don't edit this line!
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0