結果

問題 No.2275 →↑↓
ユーザー kusagame12kusagame12
提出日時 2023-11-25 19:05:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 3,457 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 65,364 KB
最終ジャッジ日時 2024-09-26 11:09:46
合計ジャッジ時間 6,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,384 KB
testcase_01 AC 51 ms
50,172 KB
testcase_02 AC 48 ms
50,104 KB
testcase_03 AC 48 ms
50,108 KB
testcase_04 AC 48 ms
50,136 KB
testcase_05 AC 50 ms
50,120 KB
testcase_06 AC 292 ms
65,364 KB
testcase_07 AC 235 ms
53,304 KB
testcase_08 AC 278 ms
57,564 KB
testcase_09 AC 285 ms
57,496 KB
testcase_10 AC 283 ms
57,844 KB
testcase_11 AC 284 ms
57,924 KB
testcase_12 AC 281 ms
57,332 KB
testcase_13 AC 278 ms
57,412 KB
testcase_14 AC 279 ms
57,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] str = br.readLine().split(" ");
        int n = Integer.parseInt(str[0]);
        
        String[] as = br.readLine().split(" ");
        int[] aArr = new int[n];
        aArr[0] = Integer.parseInt(as[0]);
        long ans = 1;
        for(int i = 1 ; i < n ; i++){
            aArr[i] = Integer.parseInt(as[i]);
            int min = Math.min(aArr[i-1] , aArr[i]);
            ans *= min;
            ans %= 998244353;
        }
        
        System.out.println(ans);
        
    }

}
0