結果

問題 No.1156 Nada Picnic 2
ユーザー akitsugu777akitsugu777
提出日時 2020-12-08 14:55:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 631 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 11,932 KB
実行使用メモリ 10,228 KB
最終ジャッジ日時 2023-10-17 17:15:17
合計ジャッジ時間 2,753 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 502 ms
10,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

N = int(input())

L = []
for a, b, c, d, e, f, g in permutations(range(10), 7):
    if 100*a+10*b+c + 100*d+10*e+f == 1000+100*g+10*c+b \
    and [1] not in [a, b, c, d, e, f] \
    and len(set([a, b, c, d, e, f])) == 6:
        L += [1000+100*g+10*c+b]
        break

for a, b, c, d, e, f, g, h, i in permutations(range(10), 9):
    if 1000*a+100*a+10*b+c + 1000*d+100*e+10*f+g == 10000+1000*h+100*b+10*c+i \
    and [1] not in [a, b, c, d, e, f, g, h, i] \
    and len(set([a, b, c, d, e, f, g, h, i])) == 9:
        L += [10000+1000*h+100*b+10*c+i]
        break

L += [841341]

print(L[N-1])
0