結果

問題 No.445 得点
ユーザー hamray
提出日時 2018-02-01 12:38:47
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 65,380 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 00:16:23
合計ジャッジ時間 1,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;
int N, K;
int main(){
    cin >> N >> K;
    double d = floor((50 * N) / (0.8 + 0.2 * K));
    cout << 50*N + d << endl;
    return 0;
}
            
0