結果

問題 No.9005 実行時間/使用メモリテスト(テスト用)
ユーザー 158b
提出日時 2015-05-30 01:17:27
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 352 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 482 ms
コンパイル使用メモリ 85,640 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2026-03-28 01:40:24
合計ジャッジ時間 990 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <algorithm>
#include <functional>
#include <string>
#include <limits.h>
#include <vector>
#include <numeric>
using namespace std;

int main(){
	int a[100000];
	
	for(int i=0; i<100000; i++){
		for(int ii=0; ii<100000; ii++){
			for(int iii=0; iii<1; iii++){
				a[iii] = 1;
			}
		}
	}
	
	cout << a[0] << endl;
	return 0;
}
0