結果

問題 No.390 最長の数列
ユーザー kotatsugamekotatsugame
提出日時 2019-10-12 06:52:49
言語 cLay
(20240714-1)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 125 bytes
コンパイル時間 5,338 ms
コンパイル使用メモリ 207,560 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-07-05 13:24:52
合計ジャッジ時間 6,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
19,072 KB
testcase_01 AC 25 ms
18,944 KB
testcase_02 AC 26 ms
18,944 KB
testcase_03 AC 24 ms
19,072 KB
testcase_04 AC 26 ms
19,072 KB
testcase_05 AC 10 ms
7,680 KB
testcase_06 AC 115 ms
20,352 KB
testcase_07 AC 20 ms
19,072 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 21 ms
19,072 KB
testcase_10 AC 45 ms
21,376 KB
testcase_11 AC 46 ms
21,376 KB
testcase_12 AC 44 ms
21,376 KB
testcase_13 AC 50 ms
20,352 KB
testcase_14 AC 157 ms
20,736 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 6 ms
5,760 KB
testcase_17 AC 20 ms
19,200 KB
testcase_18 AC 21 ms
19,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll N,A[1d5],D[2d6];
{
	rd(N,A(N));
	sortA(N,A);
	rep(i,N){D[A[i]]++;rep(j,A[i],2d6,A[i])D[j]>?=D[A[i]];}
	wt(max(D(2d6)));
}
0