結果

問題 No.9005 実行時間/使用メモリテスト(テスト用)
ユーザー naimonon77naimonon77
提出日時 2016-01-02 20:02:52
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 400 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 59,964 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 13:34:00
合計ジャッジ時間 984 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstring>
#include <algorithm>
#include <limits.h>
#include <cmath>
#include <time.h>
#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;

int test = 0;
/* ここからが本編 */
int main(void)
{
  int i,j,k,l;

  return 0;
}
0