結果
| 問題 |
No.353 ヘイトプラス
|
| コンテスト | |
| ユーザー |
rsk0315
|
| 提出日時 | 2020-03-02 22:17:06 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| コード長 | 97 bytes |
| コンパイル時間 | 332 ms |
| コンパイル使用メモリ | 26,752 KB |
| 最終ジャッジ日時 | 2025-01-09 04:04:29 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | scanf("%d %d", &a, &b);
| ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio>
int main() {
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a- -b);
}
rsk0315