結果
| 問題 | No.9000 Hello World! (テスト用) |
| ユーザー |
Baku_beanpole
|
| 提出日時 | 2016-01-14 16:13:02 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 101 bytes |
| 記録 | |
| コンパイル時間 | 434 ms |
| コンパイル使用メモリ | 19,328 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-25 04:11:04 |
| 合計ジャッジ時間 | 672 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
7 | scanf("%c", &s);
| ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(){
char s;
scanf("%c", &s);
printf("Hello World!");
return 0;
}
Baku_beanpole