結果

問題 No.350 d=vt
ユーザー Maeda
提出日時 2025-03-28 10:44:11
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 106 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 24,448 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-28 10:44:12
合計ジャッジ時間 1,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 9 WA * 3
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |     scanf("%le %le",&u,&t);
      |     ^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

void main(void){
    double u,t;
    scanf("%le %le",&u,&t);
    printf("%0.f",u*t);
}
0