結果

問題 No.508 超ゆとり教育
ユーザー kotamanegikotamanegi
提出日時 2017-04-28 22:21:22
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 686 ms
コンパイル使用メモリ 83,012 KB
実行使用メモリ 4,480 KB
最終ジャッジ日時 2023-10-11 19:02:05
合計ジャッジ時間 2,190 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,348 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define  _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream> 
#include<map>
#include <iomanip>
#include <time.h>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
using namespace std;
#define LONG_INF 10000000000000000
#define MAX_MOD 1000000007
#define REP(i,n) for(long long i = 0;i < n;++i)
int main(){
  long long n;
cin >> n;
if(n >= 100000000) n = 1000000000;
n *= n;
n *= 3;
cout << n << endl;
return 0;
}
0