結果
問題 |
No.480 合計
|
ユーザー |
|
提出日時 | 2022-09-04 01:46:41 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 190 bytes |
コンパイル時間 | 2,097 ms |
コンパイル使用メモリ | 192,700 KB |
最終ジャッジ日時 | 2025-02-07 02:30:27 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define Int long long int main() { int N; cin >> N; cout << N * (N+1) / 2 << endl; }