結果

問題 No.1940 Escape through + -
ユーザー eagleeagle
提出日時 2022-05-28 11:23:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 595 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 3,997 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-09-20 20:55:32
合計ジャッジ時間 13,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,044 KB
testcase_01 AC 118 ms
54,148 KB
testcase_02 AC 118 ms
53,840 KB
testcase_03 AC 111 ms
52,996 KB
testcase_04 AC 119 ms
54,156 KB
testcase_05 AC 123 ms
53,760 KB
testcase_06 AC 128 ms
53,988 KB
testcase_07 AC 120 ms
54,176 KB
testcase_08 AC 120 ms
54,520 KB
testcase_09 AC 104 ms
40,028 KB
testcase_10 AC 103 ms
40,168 KB
testcase_11 AC 103 ms
40,172 KB
testcase_12 AC 98 ms
40,116 KB
testcase_13 AC 117 ms
40,992 KB
testcase_14 AC 109 ms
40,940 KB
testcase_15 AC 103 ms
40,252 KB
testcase_16 AC 111 ms
41,308 KB
testcase_17 AC 106 ms
40,920 KB
testcase_18 AC 117 ms
41,412 KB
testcase_19 AC 176 ms
42,308 KB
testcase_20 AC 258 ms
47,012 KB
testcase_21 AC 264 ms
46,220 KB
testcase_22 AC 267 ms
47,320 KB
testcase_23 AC 251 ms
47,268 KB
testcase_24 AC 595 ms
48,032 KB
testcase_25 AC 560 ms
48,124 KB
testcase_26 AC 566 ms
48,156 KB
testcase_27 AC 518 ms
47,684 KB
testcase_28 AC 580 ms
48,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//数列の長さ
		int N = sc.nextInt();
		long M = sc.nextLong();
		//目標値
		long S = sc.nextLong();
		long sum = 0;
		for(int i = 0; i < N; i++) {
			sum += sc.nextLong();
		}
		String ans;
		if((S - sum) % M == 0) {
			ans = "Yes";
		} else {
			ans = "No";
		}
		System.out.println(ans);
	}
}
0