結果
問題 |
No.480 合計
|
ユーザー |
![]() |
提出日時 | 2020-08-29 07:00:51 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 171 bytes |
コンパイル時間 | 5,370 ms |
コンパイル使用メモリ | 189,984 KB |
最終ジャッジ日時 | 2025-01-13 20:00:21 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = long long; #define endl "\n" int main() { i64 N; cin >> N; cout << N * (N + 1) / 2 << endl; return 0; }