結果
| 問題 |
No.2706 One Nafmo
|
| コンテスト | |
| ユーザー |
Today03
|
| 提出日時 | 2024-03-31 20:00:48 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 251 bytes |
| コンパイル時間 | 1,983 ms |
| コンパイル使用メモリ | 191,684 KB |
| 最終ジャッジ日時 | 2025-02-20 18:17:15 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 2 WA * 7 |
ソースコード
#include <bits/stdc++.h>
#ifdef LOCAL
#include "./debug.cpp"
#else
#define debug(...)
#define print_line
#endif
using namespace std;
using ll = long long;
int main() {
ll A, B, X;
cin >> A >> B >> X;
cout << B * (A + X - 1) / A << endl;
}
Today03