結果

問題 No.632 穴埋め門松列
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-26 13:19:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 117 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 86,548 KB
実行使用メモリ 71,168 KB
最終ジャッジ日時 2023-09-19 02:52:06
合計ジャッジ時間 1,461 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
70,640 KB
testcase_01 AC 75 ms
70,872 KB
testcase_02 AC 76 ms
70,872 KB
testcase_03 AC 74 ms
71,168 KB
testcase_04 AC 75 ms
71,156 KB
testcase_05 AC 74 ms
71,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = input().split()
if b == "?":
    print(14)
else:
    if b == "3":
        print(1)
    else:
        print(4)
0