結果

問題 No.1466 I am not genius.
ユーザー 👑 Nachia
提出日時 2021-04-02 22:17:29
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 95 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 27,136 KB
最終ジャッジ日時 2025-01-20 09:27:40
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 25
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:3:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    3 |   double x; scanf("%lf",&x);
      |             ~~~~~^~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int main(){
  double x; scanf("%lf",&x);
  printf("%.10f\n",x);
  return 0;
}
0