結果
問題 |
No.480 合計
|
ユーザー |
|
提出日時 | 2020-12-29 02:14:50 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 207 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 65,016 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-04 09:25:43 |
合計ジャッジ時間 | 1,042 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 22 |
ソースコード
#include <iostream> #include <string> using namespace std; using ll=long long; int main() { ll N; cin >> N; ll res=0; for(ll i=0;i<N;i++){ res+=i; } cout << res << endl; }