結果

問題 No.1156 Nada Picnic 2
ユーザー akitsugu777
提出日時 2020-12-08 14:49:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-17 14:39:55
合計ジャッジ時間 3,076 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 2
権限があれば一括ダウンロードができます

ソースコード

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 a != b != c != d != e != f != g != 1:
        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 a != b != c != d != e != f != g != h != i!= 1:
        L += [10000+1000*h+100*b+10*c+i]
        break

L += [841341]

print(L[N-1])
0