結果
| 問題 | No.2088 数当てゲーム |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-30 23:03:39 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 207 bytes |
| 記録 | |
| コンパイル時間 | 637 ms |
| コンパイル使用メモリ | 87,404 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-29 03:42:23 |
| 合計ジャッジ時間 | 2,055 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 RE * 1 |
ソースコード
#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;
}