結果
| 問題 | No.57 ミリオンダイス |
| コンテスト | |
| ユーザー |
A63295
|
| 提出日時 | 2017-10-07 00:22:22 |
| 言語 | C11(gcc12 gnu拡張) (gcc 12.4.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 147 bytes |
| 記録 | |
| コンパイル時間 | 90 ms |
| コンパイル使用メモリ | 28,868 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-03-08 16:14:26 |
| 合計ジャッジ時間 | 639 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
コンパイルメッセージ
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 ("%lf", &n);
| ^~~~~~~~~~~~~~~~~
ソースコード
//No.57 ミリオンダイス
#include <stdio.h>
int main(void){
double n;
scanf ("%lf", &n);
printf ("%f\n",n * 3.5);
return 0;
}
A63295