結果
問題 | No.264 じゃんけん |
ユーザー |
![]() |
提出日時 | 2016-09-07 22:15:03 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 5,000 ms |
コード長 | 444 bytes |
コンパイル時間 | 2,147 ms |
コンパイル使用メモリ | 112,656 KB |
実行使用メモリ | 25,268 KB |
最終ジャッジ日時 | 2024-11-15 21:19:44 |
合計ジャッジ時間 | 2,251 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; public class Test { public static void Main() { var list = Console.ReadLine() .Split(' ') .Select(x => int.Parse(x)) .ToList(); var n = list[0]; var k = list[1]; string ans = ""; if(n == k) ans = "Drew"; else if ((n == 0 && k == 1) || (n == 1 && k == 2) || (n == 2 && k == 0)) ans = "Won"; else ans = "Lost"; Console.WriteLine(ans); } }