結果

問題 No.933 おまわりさんこいつです
ユーザー ks2mks2m
提出日時 2019-11-29 22:05:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 631 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 52,712 KB
最終ジャッジ日時 2024-11-20 22:19:05
合計ジャッジ時間 8,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,464 KB
testcase_01 AC 131 ms
41,084 KB
testcase_02 AC 110 ms
40,108 KB
testcase_03 AC 120 ms
40,164 KB
testcase_04 AC 124 ms
41,764 KB
testcase_05 AC 125 ms
41,388 KB
testcase_06 AC 125 ms
40,396 KB
testcase_07 AC 125 ms
40,024 KB
testcase_08 AC 131 ms
41,236 KB
testcase_09 AC 125 ms
41,748 KB
testcase_10 AC 132 ms
41,460 KB
testcase_11 AC 147 ms
41,988 KB
testcase_12 AC 165 ms
42,460 KB
testcase_13 AC 200 ms
44,328 KB
testcase_14 AC 215 ms
45,856 KB
testcase_15 AC 242 ms
47,352 KB
testcase_16 AC 403 ms
48,380 KB
testcase_17 AC 537 ms
48,356 KB
testcase_18 AC 122 ms
41,408 KB
testcase_19 AC 569 ms
48,804 KB
testcase_20 AC 447 ms
48,696 KB
testcase_21 AC 123 ms
41,116 KB
testcase_22 AC 125 ms
41,320 KB
testcase_23 AC 612 ms
52,548 KB
testcase_24 AC 631 ms
52,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] p = new long[n];
		for (int i = 0; i < p.length; i++) {
			p[i] = sc.nextLong();
		}
		sc.close();

		if (n == 0) {
			System.out.println(0);
			return;
		}

		long ans = 1;
		for (int i = 0; i < n; i++) {
			if (p[i] == 0) {
				System.out.println(0);
				return;
			}
			ans *= p[i];
			ans %= 9;
		}
		if (ans == 0) {
			System.out.println(9);
		} else {
			System.out.println(ans);
		}
	}
}
0