結果
問題 |
No.166 マス埋めゲーム
|
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | AC * 7 WA * 13 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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"); } }