結果

問題 No.480 合計
ユーザー hitoshinnct
提出日時 2022-12-12 17:06:50
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 64,976 KB
最終ジャッジ日時 2025-02-09 10:18:11
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

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