結果
| 問題 |
No.2225 Treasure Searching Rod (Easy)
|
| コンテスト | |
| ユーザー |
chro_96
|
| 提出日時 | 2023-02-24 21:37:06 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 2,000 ms |
| コード長 | 716 bytes |
| コンパイル時間 | 392 ms |
| コンパイル使用メモリ | 30,208 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-13 05:12:43 |
| 合計ジャッジ時間 | 1,538 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
#include <stdio.h>
int main () {
int h = 0;
int w = 0;
int k = 0;
int x = 0;
int y = 0;
long long v[50][50] = {};
int res = 0;
long long ans = 0LL;
long long mod_num = 998244353LL;
res = scanf("%d", &h);
res = scanf("%d", &w);
res = scanf("%d", &k);
for (int i = 0; i < k; i++) {
res = scanf("%d", &x);
res = scanf("%d", &y);
res = scanf("%lld", v[x-1]+(y-1));
}
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
for (int x = 0; x < h; x++) {
for (int y = 0; y < w; y++) {
if (x+y >= i+j && x-y >= i-j) {
ans += v[x][y];
}
}
}
}
}
printf("%lld\n", ans%mod_num);
return 0;
}
chro_96