結果
| 問題 | No.353 ヘイトプラス |
| コンテスト | |
| ユーザー |
feeling_burst
|
| 提出日時 | 2016-04-14 15:46:31 |
| 言語 | C90 (gcc 12.4.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 121 bytes |
| 記録 | |
| コンパイル時間 | 116 ms |
| コンパイル使用メモリ | 27,848 KB |
| 最終ジャッジ日時 | 2026-02-23 21:08:05 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 7 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:4:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
4 | scanf("%d", &a);
| ^~~~~~~~~~~~~~~
main.c:5:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | scanf("%d", &b);
| ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(void) {
int a,b;
scanf("%d", &a);
scanf("%d", &b);
printf("%d\n",a+b);
return 0;
}
feeling_burst