結果
| 問題 | No.166 マス埋めゲーム |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-04-15 23:20:28 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 15 ms / 1,000 ms |
| + 506µs | |
| コード長 | 253 bytes |
| 記録 | |
| コンパイル時間 | 3,212 ms |
| コンパイル使用メモリ | 108,848 KB |
| 実行使用メモリ | 18,816 KB |
| 最終ジャッジ日時 | 2026-09-10 03:05:55 |
| 合計ジャッジ時間 | 4,995 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
public class Program {
public static void Main() {
long[] arr = Array.ConvertAll(Console.ReadLine().Split(), value => long.Parse(value));
Console.WriteLine(arr[0]*arr[1]%arr[2] == arr[3]%arr[2] ? "YES" : "NO");
}
}