結果

問題 No.264 じゃんけん
ユーザー nanophoto12
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
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