結果

問題 No.156 キャンディー・ボックス
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 14:17:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 1,864 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 55,148 KB
最終ジャッジ日時 2024-10-13 10:08:20
合計ジャッジ時間 6,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,472 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 122 ms
53,976 KB
testcase_04 AC 126 ms
54,216 KB
testcase_05 AC 118 ms
55,148 KB
testcase_06 AC 122 ms
53,956 KB
testcase_07 AC 120 ms
53,984 KB
testcase_08 AC 111 ms
52,852 KB
testcase_09 AC 115 ms
52,852 KB
testcase_10 AC 118 ms
54,172 KB
testcase_11 AC 111 ms
52,644 KB
testcase_12 AC 115 ms
53,684 KB
testcase_13 AC 118 ms
53,740 KB
testcase_14 AC 108 ms
53,328 KB
testcase_15 AC 116 ms
53,880 KB
testcase_16 AC 120 ms
53,724 KB
testcase_17 AC 127 ms
54,228 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 123 ms
53,916 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 119 ms
54,260 KB
testcase_26 AC 126 ms
54,020 KB
testcase_27 AC 120 ms
53,948 KB
testcase_28 AC 108 ms
52,624 KB
testcase_29 WA -
testcase_30 AC 124 ms
54,112 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 127 ms
54,108 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 = i+1; break;}
		}
		System.out.println(num);
	}
}
0