結果
| 問題 | No.350 d=vt |
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-09-03 17:16:10 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 241 bytes |
| 記録 | |
| コンパイル時間 | 195 ms |
| コンパイル使用メモリ | 40,436 KB |
| 最終ジャッジ日時 | 2026-02-22 04:39:36 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 WA * 1 |
ソースコード
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
int main(void)
{
float sokudo,jikan;
scanf("%f %f",&sokudo,&jikan);
int ans = floor(sokudo*(jikan+0.0001));
printf("%d",ans);
}
funakoshi