結果
問題 | No.745 letinopia raoha |
ユーザー | akitsugu777 |
提出日時 | 2018-11-08 11:10:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 702 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-20 21:00:37 |
合計ジャッジ時間 | 1,192 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 29 ms
10,752 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 30 ms
10,752 KB |
ソースコード
a, b, c, d = map(int, input().split()) if d >= 10: print('Impossible') else: sa = 0 sb = 0 sab = 0 bc = b // 100 if bc >= 1: for i in range(bc): sb += 50 * 2**i * 100 sb += 50 * 2**(bc) * (b % 100) else: sb += 50 * b abc = b // 100 if abc >= 1: for i in range(abc): sa += 100 * 2**i * 100 sa += 100 * 2**(abc) * (ab % 100) else: sa += 100 * ab a += b ac = a // 100 if ac >= 1: for i in range(ac): sab += 100 * 2**i * 100 sab += 100 * 2**(ac) * (a % 100) else: sab += 100 * a print('Possible') print(sab - sa + sb)