結果

問題 No.2706 One Nafmo
ユーザー vjudge1
提出日時 2024-04-23 21:23:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 1,489 ms
コンパイル使用メモリ 166,160 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-06 03:42:48
合計ジャッジ時間 2,203 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main()
{
#define taskname ""
    if (fopen(taskname ".inp", "r"))
    {
        freopen(taskname ".inp", "r", stdin);
        freopen(taskname ".out", "w", stdout);
    }
    cin.tie(0)->sync_with_stdio(0);
    int A,B,X;
    cin>>A>>B>>X;
    long long ans=(X+A-1)/A*B;

    return 0;
}
0