結果

問題 No.2088 数当てゲーム
ユーザー nyst
提出日時 2022-09-30 23:03:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 207 bytes
コンパイル時間 824 ms
コンパイル使用メモリ 73,148 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 00:46:17
合計ジャッジ時間 1,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iomanip>
#include <algorithm>
using namespace std;

const int initv = 100001;

int main(){
    long long a,b;
    cin >> a >> b;
    cout << b/(1-a) << endl;
}
0