結果
問題 | No.154 市バス |
ユーザー | bal4u |
提出日時 | 2019-05-10 08:13:36 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 7 ms / 2,000 ms |
コード長 | 1,137 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 30,208 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 00:55:10 |
合計ジャッジ時間 | 791 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
6,812 KB |
testcase_01 | AC | 7 ms
6,940 KB |
testcase_02 | AC | 6 ms
6,940 KB |
testcase_03 | AC | 7 ms
6,944 KB |
testcase_04 | AC | 7 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 7 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:7:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 7 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:15:24: note: in expansion of macro 'gc' 15 | int n = 0, c = gc(); | ^~ main.c: In function 'outs': main.c:8:15: warning: implicit declaration of function 'putchar_unlocked' [-Wimplicit-function-declaration] 8 | #define pc(c) putchar_unlocked(c) | ^~~~~~~~~~~~~~~~ main.c:30:33: note: in expansion of macro 'pc' 30 | void outs(char *s) { while (*s) pc(*s++); } | ^~
ソースコード
// yukicoder: No.154 市バス // 2019.5.10 bal4u #include <stdio.h> #if 1 #define gc() getchar_unlocked() #define pc(c) putchar_unlocked(c) #else #define gc() getchar() #define pc(c) putchar(c) #endif int in() // 非負整数の入力 { int n = 0, c = gc(); // while (isspace(c)) c = gc(); do n = 10 * n + (c & 0xf), c = gc(); while (c >= '0'); return n; } int ins(char *s) // 文字列の入力 スペース以下の文字で入力終了 { char *p = s; do *s = gc(); while (*s++ > ' '); *--s = 0; return s - p; } void outs(char *s) { while (*s) pc(*s++); } char S[1005]; int q[3][1005], sz[3]; int id[128]; int main() { int i, j, k, T, len; id['W'] = 0, id['G'] = 1, id['R'] = 2; T = in(); while (T--) { sz[0] = sz[1] = sz[2] = 0; len = ins(S); if (*(S+len-1) != 'R') goto NG; for (i = 0; i < len; i++) j = id[S[i]], q[j][sz[j]++] = i; if (sz[0] < sz[1] || sz[1] != sz[2]) goto NG; if (q[0][sz[0]-1] > q[1][sz[1]-1]) goto NG; for (i = 0; i < sz[1]; i++) { if (q[0][i] > q[1][i] || q[1][i] > q[2][i]) goto NG; } outs("possible\n"); continue; NG: outs("impossible\n"); } return 0; }