結果
| 問題 | No.48 ロボットの操縦 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-01 16:14:43 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 282 bytes |
| 記録 | |
| コンパイル時間 | 510 ms |
| コンパイル使用メモリ | 97,440 KB |
| 実行使用メモリ | 12,012 KB |
| 最終ジャッジ日時 | 2026-07-04 09:00:36 |
| 合計ジャッジ時間 | 1,757 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 24 |
ソースコード
#include <iostream>
#include <cmath>
#define ll long long
using namespace std;
int main() {
ll n, m;
float res = 0;
ll cnt = 0, k = 0;
cin >> n >> m;
res = static_cast<float>(m) / 100;
cnt = res * n;
k = cnt + n;
cout << k << endl;
return 0;
}