結果

問題 No.1232 2^x = x
ユーザー kusaf_
提出日時 2025-07-01 09:51:15
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 3,021 ms
コンパイル使用メモリ 274,988 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-07-01 09:51:19
合計ジャッジ時間 4,065 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

ll solve() {
  ll P;
  cin >> P;

  return P == 2 ? 2 : (P - 1) * (P - 1);
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  ll t;
  cin >> t;
  while(t--) { cout << solve() << "\n"; }
}
0