結果

問題 No.480 合計
ユーザー hitoshinncthitoshinnct
提出日時 2022-12-12 17:10:19
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 164 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 67,300 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 14:53:03
合計ジャッジ時間 1,489 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:10:11: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized]
   10 |   cout << ans;
      |           ^~~
main.cpp:5:9: note: 'ans' was declared here
    5 |   int N,ans;
      |         ^~~

ソースコード

diff #

#include <iostream>
using namespace std;

int main () {
  int N,ans;
  cin >> N;
  for (int n = 0;n <= N;n ++) {
    ans = ans + n;
  }
  cout << ans;
  return 0;
}
0