結果

問題 No.2275 →↑↓
ユーザー ks2mks2m
提出日時 2023-04-21 21:25:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 3,227 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 58,132 KB
最終ジャッジ日時 2024-11-06 14:53:44
合計ジャッジ時間 6,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,988 KB
testcase_01 AC 56 ms
37,224 KB
testcase_02 AC 53 ms
36,984 KB
testcase_03 AC 52 ms
36,564 KB
testcase_04 AC 52 ms
36,900 KB
testcase_05 AC 52 ms
36,888 KB
testcase_06 AC 351 ms
55,244 KB
testcase_07 AC 268 ms
54,188 KB
testcase_08 AC 318 ms
57,640 KB
testcase_09 AC 310 ms
57,820 KB
testcase_10 AC 315 ms
58,132 KB
testcase_11 AC 324 ms
57,632 KB
testcase_12 AC 320 ms
57,584 KB
testcase_13 AC 316 ms
57,584 KB
testcase_14 AC 312 ms
57,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int mod = 998244353;
		long ans = 1;
		for (int i = 1; i < n; i++) {
			int m = Math.min(a[i - 1], a[i]);
			ans *= m;
			ans %= mod;
		}
		System.out.println(ans);
	}
}
0