結果
| 問題 |
No.350 d=vt
|
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-28 11:30:55 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 166 bytes |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 25,472 KB |
| 実行使用メモリ | 7,328 KB |
| 最終ジャッジ日時 | 2025-03-28 11:30:56 |
| 合計ジャッジ時間 | 1,367 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 8 WA * 4 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
7 | scanf("%lf%d",&v,&t);
| ^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
#include <math.h>
int main(){
int t;
double v;
scanf("%lf%d",&v,&t);
t=t*v;
//int型に代入して切り捨て
printf("%d",t);
return 0;
}
Maeda