結果
問題 |
No.3107 45^2
|
ユーザー |
|
提出日時 | 2025-04-20 10:10:32 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 415 bytes |
コンパイル時間 | 4,113 ms |
コンパイル使用メモリ | 251,924 KB |
実行使用メモリ | 7,848 KB |
最終ジャッジ日時 | 2025-04-20 10:10:37 |
合計ジャッジ時間 | 5,015 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 12 |
ソースコード
#include <bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; using mint = modint1000000007; using ll = long long; using ull = unsigned long long; using ld = long double; #define rep(i, a, n) for(int i = a; i < n; i++) vector<pair<int,int>>dxy = {{1,0}, {0,1}, {-1, 0}, {0, -1}}; const int INF = 1e9; const double PI = acos(-1); int main(){ int n; cin >> n; cout << n*n << endl; }