結果
問題 |
No.480 合計
|
ユーザー |
|
提出日時 | 2022-09-03 11:52:43 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 96 bytes |
コンパイル時間 | 2,547 ms |
コンパイル使用メモリ | 242,228 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 00:35:21 |
合計ジャッジ時間 | 3,319 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include<bits/stdc++.h> int main(){ int N; std::cin>>N; std::cout<<N*(N+1)/2<<std::endl; }