結果
問題 |
No.384 マス埋めゲーム2
|
ユーザー |
|
提出日時 | 2016-07-01 23:15:26 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 329 bytes |
コンパイル時間 | 4,187 ms |
コンパイル使用メモリ | 74,264 KB |
実行使用メモリ | 41,380 KB |
最終ジャッジ日時 | 2024-10-12 01:10:43 |
合計ジャッジ時間 | 7,475 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 WA * 2 RE * 6 |
ソースコード
package test; import java.util.Scanner; public class atc { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int h=sc.nextInt(); int w=sc.nextInt(); int n=sc.nextInt(); int k=sc.nextInt(); int ans=(h+w-1)%n; if(ans==k) System.out.println("YES"); else System.out.println("NO"); } }