結果

問題 No.350 d=vt
ユーザー sugim48sugim48
提出日時 2016-03-11 22:25:21
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 81,576 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-05 03:45:46
合計ジャッジ時間 1,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
using namespace std;

typedef long long ll;

int MOD = 1000000007;

int main() {
	string s; cin >> s;
	s = s.substr(2);
	stringstream ss(s);
	int v; ss >> v;
	int t; cin >> t;
	cout << v * t / 10000 << endl;
}
0