結果

問題 No.9000 Hello World! (テスト用)
ユーザー KKT89
提出日時 2021-01-13 08:44:07
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 85 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 26,624 KB
最終ジャッジ日時 2025-01-17 17:14:07
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:2:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    2 | int main(){int n;scanf("%d",&n);printf("Hello World!\n");return 0;}
      |                  ~~~~~^~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int main(){int n;scanf("%d",&n);printf("Hello World!\n");return 0;}
0