結果
問題 | No.1620 Substring Sum |
ユーザー | m0use i |
提出日時 | 2023-01-24 17:30:37 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 484 bytes |
コンパイル時間 | 537 ms |
コンパイル使用メモリ | 29,440 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 04:58:06 |
合計ジャッジ時間 | 1,820 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 5 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 5 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 5 ms
5,376 KB |
testcase_21 | AC | 5 ms
5,376 KB |
コンパイルメッセージ
main.c: In function 'main': main.c:12:13: warning: implicit declaration of function 'strlen' [-Wimplicit-function-declaration] 12 | n = strlen(cc); | ^~~~~~ main.c:3:1: note: include '<string.h>' or provide a declaration of 'strlen' 2 | #include <stdio.h> +++ |+#include <string.h> 3 | #define S 200000+2 main.c:12:13: warning: incompatible implicit declaration of built-in function 'strlen' [-Wbuiltin-declaration-mismatch] 12 | n = strlen(cc); | ^~~~~~ main.c:12:13: note: include '<string.h>' or provide a declaration of 'strlen'
ソースコード
// coached by https://www.luogu.com.cn/problem/P6146 #include <stdio.h> #define S 200000+2 #define MD 998244353 int main() { static char cc[S]; static int dd[S], bb[S]; int n, h; scanf("%s", cc); n = strlen(cc); bb[0] = 1; for (h = 1; h < n; h++) bb[h] = bb[h - 1] * 2ll % MD; for (h = 0; h < n; h++) { if (h) dd[h] = (0ll + dd[h - 1] + dd[h - 1] * 10ll + 1ll * bb[h] * (cc[h] - '0')) % MD; else dd[h] = cc[h] - '0'; } printf("%d\n", dd[n - 1]); return 0; }