結果
問題 | No.1433 Two color sequence |
ユーザー | Santosh Betha |
提出日時 | 2021-03-19 22:30:00 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,020 bytes |
コンパイル時間 | 1,677 ms |
コンパイル使用メモリ | 31,872 KB |
実行使用メモリ | 17,096 KB |
最終ジャッジ日時 | 2024-11-18 23:19:29 |
合計ジャッジ時間 | 55,871 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 1 ms
8,704 KB |
testcase_02 | AC | 1 ms
10,496 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
8,704 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
コンパイルメッセージ
main.c: In function 'f': main.c:60:10: warning: implicit declaration of function 'abs' [-Wimplicit-function-declaration] 60 | return abs(r - b); | ^~~ main.c:10:1: note: include '<stdlib.h>' or provide a declaration of 'abs' 9 | #include <limits.h> +++ |+#include <stdlib.h> 10 | struct color
ソースコード
/* ___ _ _ ___ __ ___ _ _ __ ____ ___ _ _ _ |__ /_\ |\ | | | | |__ |__| |_| |__ | |__| /_\ ___| / \ | \| | |__| ___| | | |__| |___ | | | / \ */ #include <stdio.h> #include <math.h> #include <limits.h> struct color { char x; int y; }; int f(struct color *, int, int); int main() { int n; scanf("%d", &n); struct color a[n]; char s[n]; scanf("%s", s); int i; for (i = 0; i < n; i++) { int v; scanf("%d", &v); a[i].x = s[i]; a[i].y = v; } int j, max = INT_MIN; for (i = 0; i < n; i++) { for (j = i + 1; j < n; j++) { int ans = f(a, i, j); if (max < ans) { max = ans; } } } printf("%d", max); return 0; } int f(struct color *a, int l, int h) { int i, r = 0, b = 0; for (i = l; i <= h; i++) { if (a[i].x == 'R') { r += a[i].y; } else { b += a[i].y; } } return abs(r - b); }