結果

問題 No.244 ★1のグラフの問題
ユーザー Andou
提出日時 2018-10-26 04:42:08
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 135 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 62,712 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-19 05:57:47
合計ジャッジ時間 1,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main()
{
	cin.tie(0);
	ios::sync_with_stdio(false);

	int in;
	cin >> in;
	return in-1;
}
0