結果
問題 | No.1314 N言っちゃダメゲーム (5) |
ユーザー | さかぽん |
提出日時 | 2020-12-16 21:54:17 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 1,000 ms |
コード長 | 419 bytes |
コンパイル時間 | 4,026 ms |
コンパイル使用メモリ | 102,912 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-09-20 05:21:42 |
合計ジャッジ時間 | 2,678 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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 - (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"); } }