結果
問題 | No.927 Second Permutation |
ユーザー | hedwig100 |
提出日時 | 2020-04-13 23:11:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 840 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-09-25 12:16:09 |
合計ジャッジ時間 | 2,639 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | AC | 26 ms
10,624 KB |
testcase_02 | AC | 26 ms
10,624 KB |
testcase_03 | AC | 27 ms
10,624 KB |
testcase_04 | AC | 27 ms
10,624 KB |
testcase_05 | AC | 27 ms
10,624 KB |
testcase_06 | AC | 26 ms
10,752 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 98 ms
10,752 KB |
testcase_25 | AC | 58 ms
10,752 KB |
testcase_26 | AC | 53 ms
10,752 KB |
testcase_27 | AC | 39 ms
10,624 KB |
testcase_28 | AC | 51 ms
10,880 KB |
testcase_29 | AC | 46 ms
10,880 KB |
ソースコード
MOD = 10 ** 9 + 7 INF = 10 ** 10 import sys sys.setrecursionlimit(100000000) dy = (-1,0,1,0) dx = (0,1,0,-1) def main(): x = input() cnt = [0] * 10 num = '0123456789' for i in x: for j in range(10): if num[j] == i: cnt[j] += 1 break a,b = -1,-1 for i in range(1,10): if cnt[i] > 0: if a < 0: a = i else: b = i break if b < 0: print(-1) return ans = [] for i in range(10): if i == a: ans.append(num[b] + num[a] * (cnt[a] - 1)) elif i == b: ans.append(num[b] * (cnt[b] - 1) + num[a]) else: ans.append(num[i] * cnt[i]) print(''.join(ans[::-1])) if __name__ =='__main__': main()