結果

問題 No.745 letinopia raoha
コンテスト
ユーザー cologne
提出日時 2025-12-12 16:49:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 671 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 350 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 67,652 KB
最終ジャッジ日時 2025-12-12 16:49:50
合計ジャッジ時間 1,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
from typing import Generator, List, Tuple


def input(): return sys.stdin.readline().rstrip('\n')


def main():
    a, b, c, d = map(int, input().split())
    if d == 10:
        yield 'Impossible'
        return
    x = 0
    for i in range(a + b):
        x += (50 if i < b else 100) * (2 ** (i // 100))
    yield 'Possible'
    yield x


if __name__ == '__main__':
    ret = main()


    def out(x):
        if isinstance(x, List) or isinstance(x, Tuple):
            print(*x)
        else:
            print(x)


    if ret is None:
        pass
    elif isinstance(ret, Generator):
        for val in ret:
            out(val)
    else:
        out(ret)
0