結果

問題 No.264 じゃんけん
ユーザー nanophoto12nanophoto12
提出日時 2015-12-08 01:49:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 5,000 ms
コード長 430 bytes
コンパイル時間 876 ms
コンパイル使用メモリ 106,636 KB
実行使用メモリ 25,408 KB
最終ジャッジ日時 2024-09-14 19:01:42
合計ジャッジ時間 1,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace No264
{
	class MainClass
	{
		public static void Main (string[] args)
		{
			var s = Console.ReadLine ();

			if (s == "0 0" || s == "1 1" || s == "2 2") {
				Console.WriteLine ("Drew");
			} else if (s == "2 0" || s == "0 1" || s == "1 2") {
				Console.WriteLine ("Won");
			} else {
				Console.WriteLine ("Lost");
			}
		}
	}
}
0