Submission #8462627
Source Code Expand
Copy
#include <bits/stdc++.h>
using namespace std;
//repetition
#define FOR(i,a,b) for(ll i=(a);i<(b);++i)
#define rep(i, n) for(ll i = 0; i < (ll)(n); i++)
//container util
#define all(x) (x).begin(),(x).end()
//typedef
typedef long long ll;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<ll> VLL;
typedef vector<VLL> VVLL;
typedef vector<string> VS;
typedef pair<int, int> PII;
typedef pair<ll, ll> PLL;
//const value
//const ll MOD = 1e9 + 7;
//const int dx[] = {0,1,0,-1};//{0,0,1,1,1,-1,-1,-1};
//const int dy[] = {1,0,-1,0};//{1,-1,0,1,-1,0,1,-1};
//conversion
inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;}
inline ll toLL(string s) {ll v; istringstream sin(s);sin>>v;return v;}
template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
ll n;
cin >> n;
cout << n * n << endl;
return 0;
}
Submission Info
Submission Time |
|
Task |
A - Circle |
User |
edamame88 |
Language |
C++14 (GCC 5.4.1) |
Score |
100 |
Code Size |
991 Byte |
Status |
AC |
Exec Time |
1 ms |
Memory |
256 KB |
Judge Result
Set Name |
Sample |
All |
Score / Max Score |
0 / 0 |
100 / 100 |
Status |
|
|
Set Name |
Test Cases |
Sample |
sample_01, sample_02 |
All |
random_01, random_02, random_03, random_04, random_05, random_06, random_07, random_08, random_09, random_10, random_11, random_12, random_13, random_14, random_15, random_16, sample_01, sample_02 |
Case Name |
Status |
Exec Time |
Memory |
random_01 |
AC |
1 ms |
256 KB |
random_02 |
AC |
1 ms |
256 KB |
random_03 |
AC |
1 ms |
256 KB |
random_04 |
AC |
1 ms |
256 KB |
random_05 |
AC |
1 ms |
256 KB |
random_06 |
AC |
1 ms |
256 KB |
random_07 |
AC |
1 ms |
256 KB |
random_08 |
AC |
1 ms |
256 KB |
random_09 |
AC |
1 ms |
256 KB |
random_10 |
AC |
1 ms |
256 KB |
random_11 |
AC |
1 ms |
256 KB |
random_12 |
AC |
1 ms |
256 KB |
random_13 |
AC |
1 ms |
256 KB |
random_14 |
AC |
1 ms |
256 KB |
random_15 |
AC |
1 ms |
256 KB |
random_16 |
AC |
1 ms |
256 KB |
sample_01 |
AC |
1 ms |
256 KB |
sample_02 |
AC |
1 ms |
256 KB |