結果

問題 No.1940 Escape through + -
ユーザー eagleeagle
提出日時 2022-05-28 11:21:03
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 484 bytes
コンパイル時間 1,957 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-09-20 20:53:50
合計ジャッジ時間 6,107 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,716 KB
testcase_01 AC 104 ms
40,112 KB
testcase_02 AC 115 ms
41,316 KB
testcase_03 AC 103 ms
39,852 KB
testcase_04 AC 117 ms
41,460 KB
testcase_05 AC 103 ms
40,164 KB
testcase_06 AC 110 ms
41,044 KB
testcase_07 AC 105 ms
40,052 KB
testcase_08 AC 115 ms
41,412 KB
testcase_09 AC 116 ms
40,956 KB
testcase_10 AC 100 ms
40,064 KB
testcase_11 AC 114 ms
40,912 KB
testcase_12 AC 104 ms
40,208 KB
testcase_13 AC 111 ms
41,408 KB
testcase_14 AC 110 ms
41,264 KB
testcase_15 AC 107 ms
39,868 KB
testcase_16 AC 123 ms
41,368 KB
testcase_17 AC 109 ms
39,856 KB
testcase_18 AC 115 ms
40,460 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

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();
		int M = sc.nextInt();
		//目標値
		int S = sc.nextInt();
		int sum = 0;
		for(int i = 0; i < N; i++) {
			sum += sc.nextInt();
		}
		String ans;
		if((S - sum) % M == 0) {
			ans = "Yes";
		} else {
			ans = "No";
		}
		System.out.println(ans);
	}
}
0