結果
問題 | No.379 五円硬貨 |
ユーザー |
![]() |
提出日時 | 2016-06-17 23:52:53 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 221 bytes |
コンパイル時間 | 269 ms |
コンパイル使用メモリ | 20,992 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 17:27:31 |
合計ジャッジ時間 | 1,067 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 16 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%lld %lld %lld",&N,&G,&V); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(){ long long int N,G,V; double ans,a; scanf("%lld %lld %lld",&N,&G,&V); N/=5; // printf("%d\n",N); ans=N*G; //printf("%f\n",ans); ans/=V; printf("%.12f\n",ans); return 0; }