結果
| 問題 |
No.2088 数当てゲーム
|
| コンテスト | |
| ユーザー |
遭難者
|
| 提出日時 | 2022-09-16 13:40:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 113 bytes |
| コンパイル時間 | 334 ms |
| コンパイル使用メモリ | 82,120 KB |
| 実行使用メモリ | 53,644 KB |
| 最終ジャッジ日時 | 2024-12-21 10:15:35 |
| 合計ジャッジ時間 | 3,979 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 20 |
ソースコード
a = int(input())
b = int(input())
plus = 2 ** 128
if a == 1:
print(plus)
else:
print(b // (1 - a) + plus)
遭難者