結果

問題 No.1314 N言っちゃダメゲーム (5)
ユーザー さかぽんさかぽん
提出日時 2020-12-16 21:50:11
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 2,847 ms
コンパイル使用メモリ 111,768 KB
実行使用メモリ 28,332 KB
最終ジャッジ日時 2024-09-20 05:21:36
合計ジャッジ時間 4,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 26 ms
17,664 KB
testcase_07 WA -
testcase_08 AC 25 ms
17,920 KB
testcase_09 WA -
testcase_10 AC 26 ms
17,920 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 26 ms
17,792 KB
testcase_14 AC 26 ms
17,920 KB
testcase_15 WA -
testcase_16 AC 26 ms
17,792 KB
testcase_17 AC 26 ms
17,920 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 26 ms
17,536 KB
testcase_21 WA -
testcase_22 AC 27 ms
17,664 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 26 ms
17,664 KB
testcase_28 WA -
testcase_29 AC 26 ms
17,664 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class K
{
	static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse);
	static (int, int) Read2() { var a = Read(); return (a[0], a[1]); }
	static void Main()
	{
		var (m, k) = Read2();

		var wins = (m - 1) / (k + 1);
		var w1 = wins / 2;
		var w2 = m - 1 - w1;
		if (wins % 2 == 1) (w1, w2) = (w2, w1);
		Console.WriteLine(w1 > w2 ? "Win" : w1 < w2 ? "Lose" : "Draw");
	}
}
0