結果

問題 No.264 じゃんけん
ユーザー EleBrainEleBrain
提出日時 2015-08-07 22:28:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 22 ms / 5,000 ms
コード長 1,139 bytes
コンパイル時間 759 ms
コンパイル使用メモリ 113,108 KB
実行使用メモリ 26,000 KB
最終ジャッジ日時 2024-07-18 05:10:23
合計ジャッジ時間 1,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
22,196 KB
testcase_01 AC 21 ms
23,980 KB
testcase_02 AC 20 ms
23,924 KB
testcase_03 AC 20 ms
24,176 KB
testcase_04 AC 22 ms
24,040 KB
testcase_05 AC 22 ms
26,000 KB
testcase_06 AC 21 ms
24,180 KB
testcase_07 AC 22 ms
25,884 KB
testcase_08 AC 20 ms
23,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program {
    static void Main(string[] args) {

        int N = cin.nextInt();
        int L = cin.nextInt();
        string result = "Drew";

        if (N == 0 && L == 1 ||
            N == 1 && L == 2 ||
            N == 2 && L == 0) {
            result = "Won";
        } else if (N == 0 && L == 2 ||
            N == 1 && L == 0 ||
            N == 2 && L == 1) {
            result = "Lost";
        }

        Console.WriteLine(result);
    }
}


public class cin {
    private static string[] s = new string[0];
    private static int i = 0;

    private static char[] cs = new char[] { ' ' };

    public static string next() {
        if (i < s.Length) return s[i++];
        string st = Console.ReadLine();
        while (st == "") st = Console.ReadLine();
        s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries);
        i = 0;
        return next();
    }

    public static int nextInt() {
        return int.Parse(next());
    }

    public static long nextLong() {
        return long.Parse(next());
    }

    public static double nextDouble() {
        return double.Parse(next());
    }

}
0