結果
問題 | No.2038 Strange Arrange |
ユーザー | shauuebbit |
提出日時 | 2022-09-07 20:28:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 423 bytes |
コンパイル時間 | 1,758 ms |
コンパイル使用メモリ | 201,196 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 13:27:32 |
合計ジャッジ時間 | 2,925 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; vector X(N + 1, 0); X[1] = 1; for (int i = 2; i <= N; i++) { int m = 0; for (int j = 1; j < i; j++) { if (X[j] == X[i - j]) { m = max(X[j], m); } } X[i] = m + 1; } for (int i = N; i > 0; i--) cout << X[i]; cout << endl; return 0; }