結果
問題 | No.390 最長の数列 |
ユーザー | aRac |
提出日時 | 2016-07-18 13:43:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 575 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 22,528 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 15:34:04 |
合計ジャッジ時間 | 2,437 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 13 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘void init()’: main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:10:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | for (int i=0; i<N; i++) scanf("%d", x + i); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <stdio.h> #define MAX_N 100000 int N; int d[MAX_N] = {0}; int x[MAX_N]; void init(){ scanf("%d", &N); for (int i=0; i<N; i++) scanf("%d", x + i); for (int i=0; i<N; i++) d[x[i]] = 1; } int main() { int max = 0; init(); for (int i=0; i<MAX_N; i++) { if (d[i] == 0) continue; for (int j=i+i; j<MAX_N; j+=i) { if (d[j] > 0) { d[j] = d[j] > d[i] + 1 ? d[j] : d[i] + 1; } } } for (int i=0; i<MAX_N; i++) max = max > d[i] ? max : d[i]; printf("%d", max); }