結果

問題 No.3003 ところで
ユーザー naimonon77naimonon77
提出日時 2015-10-13 01:16:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 65,708 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-07-21 07:21:19
合計ジャッジ時間 781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <algorithm>
#include <sstream>
#include <map>
#include <set>
#include <cstdio>
using namespace std;

#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
/* ここからが本編 */
/* */
/* 入力開始! */
/* 入力終了! */
int main(void)
{
   int n;
   cin >> n;

   cout << "4"<< endl;
   return 0;
}
0