結果

問題 No.1837 Same but Different
ユーザー pockynypockyny
提出日時 2022-02-12 05:53:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 75,192 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-10 14:48:42
合計ジャッジ時間 2,867 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,384 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 2 ms
4,384 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;
int a[3010],b[3010];
int main(){
    int i,n; cin >> n;
    for(i=0;i<n;i++) a[i] = 3*i;
    for(i=0;i<n;i++) b[i] = 3*i + 7;
    if(n%3==1) a[0] = 1;
    if(n%3==2){
        a[0] = 1; a[1] = 4;
        for(i=2;i<n;i++) a[i] = 3*i - 3;
    }
    int sum = 0;
    for(i=0;i<n;i++) sum += b[i] - a[i];
    int j = n - 1;
    a[n] = 10001;
    while(sum){
        a[j] += 3; sum -= 3;
        if(a[j] + 3>=a[j + 1]) j--;
    }
    sort(a,a + n); sort(b,b + n);
    for(i=0;i<n;i++) cout << a[i] << " ";
    cout << endl;
    for(i=0;i<n;i++) cout << b[i] << " ";
    cout << endl;
}
0