結果
問題 |
No.480 合計
|
ユーザー |
|
提出日時 | 2022-12-26 20:03:26 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 133 bytes |
コンパイル時間 | 1,464 ms |
コンパイル使用メモリ | 164,308 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-21 05:58:42 |
合計ジャッジ時間 | 2,235 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int sum, n ; cin >> n; sum = n*(n+1)/2 ; return sum; }