結果

問題 No.3398 Accuracy of Integer Division Approximate Function 2
コンテスト
ユーザー 👑 Mizar
提出日時 2025-12-03 11:51:08
言語 C++17
(gcc 13.3.0 + boost 1.89.0)
結果
WA  
実行時間 -
コード長 270 bytes
記録
コンパイル時間 1,519 ms
コンパイル使用メモリ 194,092 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-12-04 23:33:56
合計ジャッジ時間 2,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 5 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll t, d, a, b, k;
    cin >> t;
    while(t--){
        cin >> d >> a >> b >> k;
        cout << -1 << "\n";
    }
    return 0;
}
0