結果

問題 No.350 d=vt
ユーザー btk
提出日時 2016-03-23 23:30:59
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 1,081 ms
コンパイル使用メモリ 159,592 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 04:37:34
合計ジャッジ時間 1,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;

int main() {
    string V,T;cin>>V>>T;
    V.erase(1,1);
    LL v=stoi(V),t=stoi(T);
    LL d=(v*t)/10000;
    cout<<d<<endl;
    return 0;
}
0