結果
問題 | No.2229 Treasure Searching Rod (Hard) |
ユーザー | tenten |
提出日時 | 2023-07-06 13:06:54 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 451 ms / 2,000 ms |
コード長 | 2,148 bytes |
コンパイル時間 | 5,124 ms |
コンパイル使用メモリ | 83,856 KB |
実行使用メモリ | 58,696 KB |
最終ジャッジ日時 | 2024-07-20 08:19:55 |
合計ジャッジ時間 | 17,378 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
50,288 KB |
testcase_01 | AC | 57 ms
49,932 KB |
testcase_02 | AC | 57 ms
50,204 KB |
testcase_03 | AC | 56 ms
50,072 KB |
testcase_04 | AC | 55 ms
50,272 KB |
testcase_05 | AC | 54 ms
50,248 KB |
testcase_06 | AC | 55 ms
50,472 KB |
testcase_07 | AC | 420 ms
58,248 KB |
testcase_08 | AC | 448 ms
58,308 KB |
testcase_09 | AC | 421 ms
58,120 KB |
testcase_10 | AC | 429 ms
58,540 KB |
testcase_11 | AC | 410 ms
58,620 KB |
testcase_12 | AC | 342 ms
58,112 KB |
testcase_13 | AC | 345 ms
58,332 KB |
testcase_14 | AC | 326 ms
58,248 KB |
testcase_15 | AC | 442 ms
58,532 KB |
testcase_16 | AC | 434 ms
58,132 KB |
testcase_17 | AC | 436 ms
58,680 KB |
testcase_18 | AC | 438 ms
58,344 KB |
testcase_19 | AC | 434 ms
58,308 KB |
testcase_20 | AC | 446 ms
58,604 KB |
testcase_21 | AC | 451 ms
58,088 KB |
testcase_22 | AC | 442 ms
58,696 KB |
testcase_23 | AC | 324 ms
58,252 KB |
testcase_24 | AC | 346 ms
58,332 KB |
testcase_25 | AC | 358 ms
58,260 KB |
testcase_26 | AC | 240 ms
56,712 KB |
testcase_27 | AC | 176 ms
55,124 KB |
testcase_28 | AC | 395 ms
58,304 KB |
testcase_29 | AC | 408 ms
58,520 KB |
testcase_30 | AC | 185 ms
55,648 KB |
testcase_31 | AC | 239 ms
56,100 KB |
ソースコード
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 k = sc.nextInt(); long ans = 0; while (k-- > 0) { int r = sc.nextInt(); int c = sc.nextInt(); int v = sc.nextInt(); long current = (long)r * w; current += MOD - getValue(w - c, r); current %= MOD; current += MOD - getValue(c - 1, r); current %= MOD; ans += current * v % MOD; ans %= MOD; } System.out.println(ans); } static long getValue(long width, long height) { return (width + Math.max(width - height + 1, 1)) * Math.min(height, width) / 2 % MOD; } } 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(); } }