結果

問題 No.3107 45^2
ユーザー 中野晴登
提出日時 2025-04-18 23:21:01
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,039 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 191,300 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2025-04-18 23:21:05
合計ジャッジ時間 2,829 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using VVL = vector<vector<long long>>;
using VL = vector<long long>;
using PLL = pair<ll, ll>;
#define m_p(a, b) make_pair(a, b)
#define rep(i,n) for(long long i = 0; i < n; i++)
#define Rrep(i,n) for(long long i = n-1; i >= 0; i--)
#define Srep(i,si,n) for(long long i = si; i < n; i++)
using ld = long double;
using cll = const long long;
const long long llmax = 9223372036854775807;
const int intmax = 2147483647;
const ll ll1 = 1;
const ll mod = 998244353;
const ll mod_two = 1e+9 +7;
const ld pi = acos(-1.0);
// g++ -g -fsanitize=address
// -Wall -Wextra

int main(){
  //cout << fixed << setprecision(0);
  //指数表記になったときに弄って使う
  //random_device r_d;
  //uniform_int_distribution int_rand(a, b);
  //int_rand(r_d)で a <= n <= bのnが出力される(一様分布)
  //ランダムテンプレ
  long long n, m;
  long long a, b;
  long long i, j, k;
  long long count = 0, ans = 0;
  string s, t;
  cin >> n;
  cout << n*n << endl;
}
0