結果

問題 No.632 穴埋め門松列
ユーザー shamioshamio
提出日時 2020-02-01 10:01:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 453 ms / 1,000 ms
コード長 358 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 43,736 KB
最終ジャッジ日時 2024-09-18 19:46:23
合計ジャッジ時間 5,968 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 440 ms
43,708 KB
testcase_01 AC 444 ms
43,732 KB
testcase_02 AC 453 ms
43,736 KB
testcase_03 AC 445 ms
43,480 KB
testcase_04 AC 439 ms
43,352 KB
testcase_05 AC 450 ms
43,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

c = input()
c = c.replace(" ", "", 2)


def is_kadomatsu(s):
    li = list(s)
    rank = np.argsort(li)
    if rank[0] == 1 or rank[2] == 1:
        return True
    else:
        return False


c1 = c.replace("?", "1")
c4 = c.replace("?", "4")

ans = ""
if is_kadomatsu(c1):
    ans += "1"
if is_kadomatsu(c4):
    ans += "4"

print(ans)
0