結果

問題 No.632 穴埋め門松列
ユーザー oz4point5
提出日時 2019-03-30 05:16:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 1,000 ms
コード長 150 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-11-07 12:50:03
合計ジャッジ時間 909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

c = list(input().split())

ans = 0

if c[1] == "2":
    ans = 4
elif c[1] == "3":
    ans = 1
else:
    ans = 14

print(ans)
0