結果

問題 No.156 キャンディー・ボックス
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 14:22:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 2,848 ms
コンパイル使用メモリ 73,764 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-10-13 10:19:15
合計ジャッジ時間 7,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 116 ms
40,696 KB
testcase_03 AC 122 ms
41,168 KB
testcase_04 AC 116 ms
41,068 KB
testcase_05 WA -
testcase_06 AC 120 ms
41,232 KB
testcase_07 AC 117 ms
40,920 KB
testcase_08 AC 105 ms
39,932 KB
testcase_09 AC 122 ms
40,992 KB
testcase_10 AC 121 ms
41,160 KB
testcase_11 AC 118 ms
41,436 KB
testcase_12 AC 103 ms
39,932 KB
testcase_13 AC 119 ms
40,968 KB
testcase_14 AC 117 ms
41,132 KB
testcase_15 AC 108 ms
40,312 KB
testcase_16 AC 116 ms
41,168 KB
testcase_17 AC 107 ms
40,108 KB
testcase_18 WA -
testcase_19 AC 117 ms
41,176 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 109 ms
39,892 KB
testcase_24 AC 118 ms
41,296 KB
testcase_25 AC 124 ms
41,068 KB
testcase_26 AC 111 ms
39,904 KB
testcase_27 AC 116 ms
40,948 KB
testcase_28 WA -
testcase_29 AC 115 ms
40,912 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 117 ms
41,096 KB
testcase_33 AC 120 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int m = sc.nextInt();
		long[] ar = new long[n];
		int num = 0;
		for (int i=0; i<n; i++) {
			if (i==0) {ar[0] = sc.nextInt();}
			else {
				ar[i] = sc.nextInt() + ar[i-1];
			}
			if (ar[i] <= m) {num++;}
		}
		System.out.println(num);
	}
}
0