結果

問題 No.365 ジェンガソート
ユーザー rodearodea
提出日時 2017-12-22 17:53:53
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 341 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 65,092 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-12-17 23:14:41
合計ジャッジ時間 18,222 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,532 KB
testcase_01 AC 2 ms
10,404 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 67 ms
6,816 KB
testcase_17 TLE -
testcase_18 AC 29 ms
6,816 KB
testcase_19 TLE -
testcase_20 AC 548 ms
6,816 KB
testcase_21 AC 8 ms
6,820 KB
testcase_22 AC 23 ms
6,820 KB
testcase_23 AC 14 ms
6,816 KB
testcase_24 AC 22 ms
6,816 KB
testcase_25 AC 8 ms
6,820 KB
testcase_26 AC 17 ms
6,820 KB
testcase_27 AC 30 ms
6,816 KB
testcase_28 AC 19 ms
6,816 KB
testcase_29 AC 27 ms
6,820 KB
testcase_30 AC 18 ms
6,820 KB
testcase_31 AC 9 ms
6,816 KB
testcase_32 AC 9 ms
6,816 KB
testcase_33 AC 30 ms
6,816 KB
testcase_34 AC 6 ms
6,816 KB
testcase_35 AC 22 ms
6,816 KB
testcase_36 TLE -
testcase_37 AC 30 ms
6,820 KB
testcase_38 AC 30 ms
6,820 KB
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:20:17: warning: 'c' may be used uninitialized [-Wmaybe-uninitialized]
   20 |                 if (b > c)
      |                 ^~
main.cpp:6:36: note: 'c' was declared here
    6 |         int n, i, j, a[100000], b, c;
      |                                    ^
main.cpp:20:17: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized]
   20 |                 if (b > c)
      |                 ^~
main.cpp:6:33: note: 'b' was declared here
    6 |         int n, i, j, a[100000], b, c;
      |                                 ^

ソースコード

diff #

#include<iostream>
using namespace std;

int main()
{
	int n, i, j, a[100000], b, c;

	cin >> n;

	for (i = 1; i <= n; i++) cin >> a[i];

	for (i = n; i >= 2; i--)
	{
		for (j = 1; j <= n; j++)
		{
			if (a[j] == i - 1) b = j;
			if (a[j] == i) c = j;
		}

		if (b > c)
		{
			cout << i - 1 << endl;
			return 0;
		}
	}
	cout << 0 << endl;
}
0