結果
| 問題 |
No.197 手品
|
| コンテスト | |
| ユーザー |
matsu7874
|
| 提出日時 | 2015-10-12 15:52:22 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 554 bytes |
| コンパイル時間 | 86 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-06-27 13:06:35 |
| 合計ジャッジ時間 | 2,723 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 24 WA * 19 |
ソースコード
S_b = [c for c in input()]
N = int(input())
S_a = [c for c in input()]
o_b = S_b.count('o')
o_a = S_a.count('o')
if o_b!=o_a:
print('SUCCESS')
exit()
if o_b==0 or o_b == 3:
print('FAILURE')
exit()
t = 'o'
if o_b == 2:
t = 'x'
d = abs(S_b.index(t) - S_a.index(t))
if N == 0:
if S_b != S_a:
print('SUCCESS')
else:
print('FAILURE')
elif N == 1:
if d != 1:
print('SUCCESS')
else:
print('FAILURE')
else:
if (N - d) % 2 == 1:
print('SUCCESS')
else:
print('FAILURE')
matsu7874