結果

問題 No.1406 Test
ユーザー xRS43BofaUEZ5gc
提出日時 2021-03-02 08:59:20
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 694 bytes
コンパイル時間 3,787 ms
コンパイル使用メモリ 79,128 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-10-03 01:34:51
合計ジャッジ時間 7,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15 WA * 3 RE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) {

	        Scanner sc = new Scanner(System.in);
	        int number_total = Integer.parseInt(sc.nextLine());
	        String[] line  = sc.nextLine().split(" ");
	        int[] array = Arrays.stream(line).mapToInt(Integer::parseInt).toArray();
	        int sum = 0;
	        int count = 0;

	        for (int i = 0; i < number_total - 1; i ++) {
	        	sum += array[i];
	        }

	        for (int i = sum + 1; i <= sum + 100; i ++) {
	        	if (i % number_total == 0) {
	        		count +=1;

	        	}
	        }

	        System.out.println(count);
	    }
	}
0