結果

問題 No.2240 WAC
ユーザー ttomo2023ttomo2023
提出日時 2023-03-18 23:04:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 115 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 11,612 KB
実行使用メモリ 10,796 KB
最終ジャッジ日時 2023-10-18 17:36:02
合計ジャッジ時間 3,011 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,036 KB
testcase_01 AC 29 ms
10,036 KB
testcase_02 AC 29 ms
10,036 KB
testcase_03 AC 28 ms
10,036 KB
testcase_04 AC 28 ms
10,036 KB
testcase_05 AC 29 ms
10,036 KB
testcase_06 AC 29 ms
10,036 KB
testcase_07 AC 29 ms
10,036 KB
testcase_08 WA -
testcase_09 AC 28 ms
10,036 KB
testcase_10 AC 30 ms
10,796 KB
testcase_11 AC 31 ms
10,796 KB
testcase_12 WA -
testcase_13 AC 30 ms
10,284 KB
testcase_14 AC 29 ms
10,136 KB
testcase_15 AC 30 ms
10,536 KB
testcase_16 AC 30 ms
10,708 KB
testcase_17 WA -
testcase_18 AC 29 ms
10,176 KB
testcase_19 AC 29 ms
10,212 KB
testcase_20 AC 30 ms
10,684 KB
testcase_21 AC 29 ms
10,328 KB
testcase_22 WA -
testcase_23 AC 29 ms
10,284 KB
testcase_24 WA -
testcase_25 AC 29 ms
10,508 KB
testcase_26 WA -
testcase_27 AC 29 ms
10,164 KB
testcase_28 WA -
testcase_29 AC 29 ms
10,128 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 30 ms
10,152 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 30 ms
10,536 KB
testcase_37 AC 29 ms
10,708 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
S = input()
if S[0] == 'C' or S[-1] == 'W':
    print('No')
else:
    print('Yes')
0