結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー tentententen
提出日時 2023-02-28 13:01:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 2,101 bytes
コンパイル時間 3,380 ms
コンパイル使用メモリ 90,740 KB
実行使用メモリ 47,728 KB
最終ジャッジ日時 2024-09-15 15:23:38
合計ジャッジ時間 14,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,812 KB
testcase_01 AC 51 ms
37,068 KB
testcase_02 AC 51 ms
36,708 KB
testcase_03 AC 51 ms
36,644 KB
testcase_04 AC 51 ms
37,020 KB
testcase_05 AC 51 ms
36,672 KB
testcase_06 AC 52 ms
36,928 KB
testcase_07 AC 418 ms
46,732 KB
testcase_08 AC 435 ms
46,632 KB
testcase_09 AC 407 ms
46,520 KB
testcase_10 AC 410 ms
46,940 KB
testcase_11 AC 413 ms
46,584 KB
testcase_12 AC 320 ms
46,824 KB
testcase_13 AC 322 ms
46,280 KB
testcase_14 AC 317 ms
47,728 KB
testcase_15 AC 450 ms
46,852 KB
testcase_16 AC 439 ms
47,060 KB
testcase_17 AC 438 ms
46,588 KB
testcase_18 AC 439 ms
47,080 KB
testcase_19 AC 455 ms
47,424 KB
testcase_20 AC 444 ms
46,696 KB
testcase_21 AC 434 ms
46,812 KB
testcase_22 AC 446 ms
46,696 KB
testcase_23 AC 315 ms
46,424 KB
testcase_24 AC 355 ms
46,284 KB
testcase_25 AC 363 ms
46,864 KB
testcase_26 AC 247 ms
45,056 KB
testcase_27 AC 172 ms
43,456 KB
testcase_28 AC 407 ms
46,940 KB
testcase_29 AC 405 ms
46,772 KB
testcase_30 AC 186 ms
43,856 KB
testcase_31 AC 242 ms
46,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int h = sc.nextInt();
        int w = sc.nextInt();
        int n = sc.nextInt();
        long ans = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int y = sc.nextInt();
            long v = sc.nextInt();
            long left = Math.min(x, y);
            long count = MOD - x;
            count += left * (x + x - left + 1) / 2 % MOD;
            count %= MOD;
            long right = Math.min(x, w - y + 1);
            count += right * (x + x - right + 1) / 2 % MOD;
            count %= MOD;
            ans += count * v % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0