結果

問題 No.1500 Super Knight
ユーザー SSRSSSRS
提出日時 2021-05-07 21:43:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 2,548 ms
コンパイル使用メモリ 167,176 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 09:33:36
合計ジャッジ時間 2,460 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
int main(){
  long long N;
  cin >> N;
  if (N == 0){
    cout << 1 << endl;
  } else if (N == 1){
    cout << 12 << endl;
  } else if (N == 2){
    cout << 65 << endl;
  } else {
    if (N % 2 == 1){
      long long ans = ((N * 6 + 1) % MOD * (N * 6 + 1) % MOD + MOD - 1) * 500000004 % MOD;
      ans += MOD - (N / 2) * (N / 2 + 1) % MOD * 4 % MOD;
      ans %= MOD;
      cout << ans << endl;
    }
    if (N % 2 == 0){
      long long ans = ((N * 6 + 1) % MOD * (N * 6 + 1) % MOD + 1) * 500000004 % MOD;
      ans += MOD - (N / 2) * (N / 2) % MOD * 4 % MOD;
      ans %= MOD;
      cout << ans << endl;
    }
  }
}
0