結果
問題 | No.445 得点 |
ユーザー |
![]() |
提出日時 | 2017-01-22 17:03:48 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 214 bytes |
コンパイル時間 | 993 ms |
コンパイル使用メモリ | 63,360 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 05:38:04 |
合計ジャッジ時間 | 1,624 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 WA * 4 |
ソースコード
#include <iostream>using namespace std;int f(int N, int K){return 50 * N + (int)(50.0 * N / (0.8 + 0.2 * K));}int main(){int A, B;cin >> A >> B;cout << f(A, B) << endl;return 0;}