結果
| 問題 | No.1089 三変数方程式 |
| ユーザー |
CELICA
|
| 提出日時 | 2020-06-24 10:43:16 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 245µs | |
| コード長 | 306 bytes |
| 記録 | |
| コンパイル時間 | 869 ms |
| コンパイル使用メモリ | 177,524 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-05 10:23:46 |
| 合計ジャッジ時間 | 2,072 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
using ll = long long;
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> n;
int res;
if (!n)
{
res=1;
}
else
{
res=(n+1)*(n+2)/2;
}
printf("%d\n",res);
return 0;
}
CELICA