結果

問題 No.1156 Nada Picnic 2
ユーザー 👑 KazunKazun
提出日時 2020-08-22 04:53:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 51,584 KB
最終ジャッジ日時 2024-10-15 06:44:09
合計ジャッジ時間 910 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

"""from itertools import permutations

N=int(input())
T=["","シイタケヤマイキタイ","オオツカコクサイビジツカン","springeightpicnic"]
U=["","シイタ+ケヤマ==イキタイ","オオツカ+コクサイ==ビジツカン","spring+eight==picnic"]
V=["","シイタ+ケヤマ","オオツカ+コクサイ","spring+eight"]
S=list(set(T[N]))

X=0
iter=permutations(range(0,10),len(S))
for Y in iter:
    A=U[N]
    for k in range(len(S)):
        A=A.replace(S[k],str(Y[k]))

    try:
        if eval(A):
            X=Y
    except:
        pass

Z=V[N]
for k in range(len(S)):
    Z=Z.replace(S[k],str(X[k]))
print(eval(Z))
"""
N=int(input())
if N==1:
    print(1481)
elif N==2:
    print(10947)
else:
    print(841341)
0