結果
問題 | No.390 最長の数列 |
ユーザー | kriii |
提出日時 | 2018-04-15 20:53:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 59 ms / 5,000 ms |
コード長 | 379 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 22,912 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-06-27 00:07:34 |
合計ジャッジ時間 | 1,071 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 13 ms
5,376 KB |
testcase_06 | AC | 59 ms
6,272 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 24 ms
6,400 KB |
testcase_11 | AC | 24 ms
6,400 KB |
testcase_12 | AC | 23 ms
6,400 KB |
testcase_13 | AC | 17 ms
6,400 KB |
testcase_14 | AC | 24 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 7 ms
6,400 KB |
testcase_18 | AC | 5 ms
6,272 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:7:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | int N; scanf ("%d",&N); | ~~~~~~^~~~~~~~~ main.cpp:9:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | int x; scanf ("%d",&x); | ~~~~~~^~~~~~~~~
ソースコード
#include <stdio.h> int N,X[100100],D[1001001]; bool C[1001001]; int main() { int N; scanf ("%d",&N); for (int i=0;i<N;i++){ int x; scanf ("%d",&x); C[x] = 1; } int ans = 0; for (int i=1;i<=1000000;i++) if (C[i]){ D[i]++; if (ans < D[i]) ans = D[i]; for (int j=i*2;j<=1000000;j+=i) if (C[j] && D[j] < D[i]) D[j] = D[i]; } printf ("%d\n",ans); return 0; }