結果

問題 No.2706 One Nafmo
ユーザー a1048576
提出日時 2024-03-31 13:47:05
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 3,249 ms
コンパイル使用メモリ 228,224 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 18:23:29
合計ジャッジ時間 3,799 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other AC * 3 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0