結果
問題 | No.154 市バス |
ユーザー | tikitaka1201 |
提出日時 | 2020-09-16 21:00:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 446 bytes |
コンパイル時間 | 473 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-22 03:36:00 |
合計ジャッジ時間 | 3,168 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 326 ms
10,752 KB |
testcase_01 | AC | 328 ms
10,880 KB |
testcase_02 | AC | 349 ms
10,752 KB |
testcase_03 | AC | 250 ms
10,752 KB |
testcase_04 | AC | 318 ms
10,880 KB |
testcase_05 | WA | - |
testcase_06 | AC | 29 ms
10,880 KB |
testcase_07 | AC | 389 ms
10,752 KB |
testcase_08 | WA | - |
ソースコード
t=int(input()) for _ in range(t): flg=True s=list(input()) n=len(s) w=0 g=0 r=0 for i in range(n): if s[i]=='W': w+=1 elif s[i]=='G': g+=1 w-=1 elif s[i]=='R': r+=1 g-=1 if w<0 or g<0: flg=False break if flg==False or r==0 or g>0 or s[-1]=='W': print('impossible') else: print('possible')