結果
| 問題 | No.2706 One Nafmo |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-03-31 13:47:05 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 215 bytes |
| 記録 | |
| コンパイル時間 | 2,473 ms |
| コンパイル使用メモリ | 243,816 KB |
| 実行使用メモリ | 9,788 KB |
| 最終ジャッジ日時 | 2026-09-06 22:00:30 |
| 合計ジャッジ時間 | 3,691 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 4 |
| other | AC * 3 WA * 6 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using mint = atcoder::modint998244353;
#define int long long
signed main() {
int a,b,x;
cin >> a >> b >> x;
cout << x*((b-1)/a+1) << endl;
}