結果
| 問題 | 
                            No.350 d=vt
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2016-10-29 19:35:07 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 110 bytes | 
| コンパイル時間 | 516 ms | 
| コンパイル使用メモリ | 63,868 KB | 
| 実行使用メモリ | 6,816 KB | 
| 最終ジャッジ日時 | 2024-10-05 05:11:01 | 
| 合計ジャッジ時間 | 1,083 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 11 WA * 1 | 
ソースコード
#include<iostream>
using namespace std;
int main()
{
float v,t;
cin>>v>>t;
cout<<(int)(v*t)<<endl;
return 0;
}