結果

問題 No.1088 A+B Problem
ユーザー vjudge1
提出日時 2023-10-25 08:09:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 26,880 KB
最終ジャッジ日時 2025-02-17 13:32:55
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d", &x);
      |     ~~~~~^~~~~~~~~~
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d", &y);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main()
{
    int x = 0;
    int y = 0;
    scanf("%d", &x);
    scanf("%d", &y);
    printf("%d", x + y);

    return 0;
}
0