結果

問題 No.1837 Same but Different
ユーザー chineristACchineristAC
提出日時 2022-02-11 21:59:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,138 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 67,072 KB
最終ジャッジ日時 2024-06-27 18:33:24
合計ジャッジ時間 3,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,552 KB
testcase_01 AC 52 ms
55,680 KB
testcase_02 WA -
testcase_03 AC 52 ms
55,808 KB
testcase_04 AC 67 ms
66,816 KB
testcase_05 AC 67 ms
66,688 KB
testcase_06 AC 67 ms
66,944 KB
testcase_07 AC 67 ms
66,944 KB
testcase_08 AC 67 ms
67,072 KB
testcase_09 AC 66 ms
66,560 KB
testcase_10 AC 67 ms
67,072 KB
testcase_11 AC 67 ms
66,944 KB
testcase_12 AC 66 ms
66,944 KB
testcase_13 AC 66 ms
66,816 KB
testcase_14 AC 66 ms
67,072 KB
testcase_15 AC 65 ms
65,792 KB
testcase_16 WA -
testcase_17 AC 63 ms
64,640 KB
testcase_18 AC 66 ms
66,432 KB
testcase_19 AC 67 ms
66,176 KB
testcase_20 WA -
testcase_21 AC 64 ms
66,176 KB
testcase_22 WA -
testcase_23 AC 64 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())

if N%3==0:
    A = [3*i for i in range(N)] + [10001]
    B = [3*i+1 for i in range(N)]
    tmp = N
    for i in range(N)[::-1]:
        while tmp and A[i]+3 < A[i+1]:
            A[i] += 3
            tmp -= 3
    
    assert tmp == 0
    print(*A[:N])
    print(*B)

elif N%3==1:
    A = [3*i for i in range(N)] + [10001]
    B = [3*i+1 for i in range(N)]
    tmp = N - 1
    A[-2] += 1
    for i in range(N)[::-1]:
        while tmp and A[i]+3 < A[i+1]:
            A[i] += 3
            tmp -= 3
    
    assert tmp==0
    print(*A[:N])
    print(*B)

else:
    A = [3*i for i in range(N)] + [10001]
    B = [3*i+1 for i in range(N)]
    tmp = N - 2
    A[-2] += 1
    A[-3] += 1
    for i in range(N)[::-1]:
        while tmp and A[i]+3 < A[i+1]:
            A[i] += 3
            tmp -= 3
    
    assert tmp==0
    print(*A[:N])
    print(*B)
0