結果

問題 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
コンパイル時間 1,058 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-09-18 13:36:51
合計ジャッジ時間 3,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,368 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 24 ms
10,368 KB
testcase_03 AC 25 ms
10,368 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 24 ms
10,368 KB
testcase_06 AC 25 ms
10,368 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 WA -
testcase_09 AC 25 ms
10,368 KB
testcase_10 AC 26 ms
11,392 KB
testcase_11 AC 26 ms
11,648 KB
testcase_12 WA -
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 25 ms
10,496 KB
testcase_15 AC 26 ms
11,136 KB
testcase_16 AC 27 ms
11,392 KB
testcase_17 WA -
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 26 ms
11,264 KB
testcase_21 AC 25 ms
11,008 KB
testcase_22 WA -
testcase_23 AC 25 ms
10,880 KB
testcase_24 WA -
testcase_25 AC 26 ms
11,008 KB
testcase_26 WA -
testcase_27 AC 26 ms
10,752 KB
testcase_28 WA -
testcase_29 AC 25 ms
10,496 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 25 ms
10,624 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 27 ms
11,264 KB
testcase_37 AC 26 ms
11,392 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