結果

問題 No.166 マス埋めゲーム
ユーザー bluemeganebluemegane
提出日時 2018-09-20 08:08:30
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 398 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 111,460 KB
実行使用メモリ 26,116 KB
最終ジャッジ日時 2024-07-18 08:27:50
合計ジャッジ時間 1,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 19 ms
21,940 KB
testcase_03 WA -
testcase_04 AC 25 ms
23,896 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 25 ms
23,672 KB
testcase_09 AC 21 ms
23,816 KB
testcase_10 AC 22 ms
25,732 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 23 ms
25,984 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 20 ms
23,856 KB
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var h = long.Parse(line[0]);
        var w = long.Parse(line[1]);
        var n = long.Parse(line[2]);
        var k = long.Parse(line[3]);
        if ((h * w % n == k) | (h * w % n == 0)) Console.WriteLine("YES");
        Console.WriteLine("NO");
    }
}
0