結果

問題 No.508 超ゆとり教育
ユーザー tansunogon
提出日時 2017-05-05 03:57:04
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 54,200 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-14 07:29:47
合計ジャッジ時間 950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

struct iostream_init_struct
{ 
	iostream_init_struct()
	{
		std::cin.tie(0);
		std::cin.sync_with_stdio(false);
	}
} iostream_init;

int main(void)
{
	cout << 1 << endl;
}
0