結果

問題 No.384 マス埋めゲーム2
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 20:46:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 306 bytes
コンパイル時間 3,840 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-11-22 12:10:48
合計ジャッジ時間 7,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,076 KB
testcase_01 AC 115 ms
40,196 KB
testcase_02 AC 115 ms
39,948 KB
testcase_03 AC 126 ms
40,984 KB
testcase_04 AC 132 ms
41,216 KB
testcase_05 AC 130 ms
41,608 KB
testcase_06 AC 116 ms
40,016 KB
testcase_07 AC 128 ms
41,180 KB
testcase_08 AC 128 ms
40,904 KB
testcase_09 AC 115 ms
39,964 KB
testcase_10 AC 115 ms
39,704 KB
testcase_11 AC 128 ms
41,400 KB
testcase_12 AC 126 ms
41,388 KB
testcase_13 AC 130 ms
40,816 KB
testcase_14 AC 116 ms
40,216 KB
testcase_15 AC 133 ms
41,020 KB
testcase_16 AC 129 ms
41,680 KB
testcase_17 AC 128 ms
41,272 KB
testcase_18 AC 133 ms
40,992 KB
testcase_19 AC 127 ms
40,960 KB
testcase_20 AC 114 ms
40,100 KB
testcase_21 AC 129 ms
41,272 KB
testcase_22 AC 131 ms
41,532 KB
testcase_23 AC 116 ms
40,096 KB
testcase_24 AC 131 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong()+sc.nextLong()-1, a = sc.nextLong(), b = sc.nextLong();
		if((n-b)%a == 0){
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0