結果
問題 | No.632 穴埋め門松列 |
ユーザー | Theta |
提出日時 | 2022-11-01 13:15:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 34 ms / 1,000 ms |
コード長 | 657 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-07-16 06:29:00 |
合計ジャッジ時間 | 1,232 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
11,520 KB |
testcase_01 | AC | 33 ms
11,648 KB |
testcase_02 | AC | 33 ms
11,520 KB |
testcase_03 | AC | 34 ms
11,648 KB |
testcase_04 | AC | 34 ms
11,520 KB |
testcase_05 | AC | 34 ms
11,520 KB |
ソースコード
from typing import Sequence def is_kadomatsu(height_seq: Sequence[int]) -> bool: if len(set(height_seq)) != 3: return False if max(height_seq) == height_seq[1] or min(height_seq) == height_seq[1]: return True return False def main(): c = list(input().split()) question_idx = c.index("?") c_1 = c.copy() c_1[question_idx] = 1 c_2 = c.copy() c_2[question_idx] = 4 c_1 = list(map(int, c_1)) c_2 = list(map(int, c_2)) if is_kadomatsu(c_1): if is_kadomatsu(c_2): print(14) else: print(1) else: print(4) if __name__ == "__main__": main()