結果

問題 No.3107 45^2
ユーザー 438kujira
提出日時 2025-04-18 22:13:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 1,322 ms
コンパイル使用メモリ 160,320 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-04-18 22:13:19
合計ジャッジ時間 1,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
using vi = vector<int>;
using vvi = vector<vi>;
using vl = vector<ll>;
using vvl = vector<vl>;
using vb = vector<bool>;
using vvb = vector<vb>;
#define LLINF 9223372036854775807
#define MOD ll(998244353)
#define all(x) (x).begin(),(x).end()
#define dbg(x) cerr<<#x<<": "<<x<<endl
const double PI = 3.14159265358979;


int main(){
    ll n;
    cin >> n;
    cout << n*n << endl;

}
0