結果

問題 No.1491 銀将
ユーザー Cyclone28Cyclone28
提出日時 2021-04-30 21:32:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 213 bytes
コンパイル時間 1,503 ms
コンパイル使用メモリ 166,356 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-18 23:55:47
合計ジャッジ時間 1,817 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;

signed main(){
  int k; cin >> k;
  int p = 1 + 2*k;
  int q = (p-2)/2 * (p-2);
  int r = ((p-2)/2+1)*p;
  cout << q + r + p/2 + p/2+1 << endl;
}
0