結果
問題 | No.775 tatyamと素数大富豪(hard) |
ユーザー | kmjp |
提出日時 | 2018-12-22 01:18:35 |
言語 | PyPy2 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 687 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 77,056 KB |
実行使用メモリ | 103,048 KB |
最終ジャッジ日時 | 2024-10-14 01:30:12 |
合計ジャッジ時間 | 6,601 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 154 ms
91,040 KB |
testcase_02 | AC | 148 ms
91,776 KB |
testcase_03 | AC | 147 ms
91,400 KB |
testcase_04 | AC | 156 ms
91,264 KB |
testcase_05 | AC | 156 ms
91,648 KB |
testcase_06 | AC | 154 ms
91,392 KB |
testcase_07 | AC | 166 ms
91,968 KB |
testcase_08 | AC | 155 ms
91,676 KB |
testcase_09 | AC | 176 ms
95,008 KB |
testcase_10 | AC | 179 ms
95,328 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 170 ms
94,360 KB |
testcase_14 | TLE | - |
ソースコード
import sys import math import random C=set() def dfs(id,s,cur): global K global prev global C if id==N: if cur!=prev: C.add(cur) if len(C)>2*K: C=list(C) C.sort() C.reverse() for c in C[:K]: print(c) sys.exit(0) prev = cur return for i in range(N): if i not in s: if i>0 and A[i]==A[i-1] and (i-1) not in s: continue s.add(i) dfs(id+1,s,cur+A[i]) s.remove(i) N,K=map(int,raw_input().strip().split(" ")) A=raw_input().strip().split(" ") prev="" for x in range(N): for i in range(N-1): if A[i]+A[i+1] < A[i+1]+A[i] or (A[i]+A[i+1] == A[i+1]+A[i] and A[i]<A[i+1]): A[i],A[i+1]=A[i+1],A[i] dfs(0,set(),"")