結果
問題 | No.83 最大マッチング |
ユーザー | dango |
提出日時 | 2023-06-05 21:32:09 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 111 ms / 5,000 ms |
コード長 | 514 bytes |
コンパイル時間 | 124 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-06-09 05:18:52 |
合計ジャッジ時間 | 1,318 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
10,624 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | AC | 25 ms
10,624 KB |
testcase_03 | AC | 25 ms
10,624 KB |
testcase_04 | AC | 25 ms
10,624 KB |
testcase_05 | AC | 25 ms
10,624 KB |
testcase_06 | AC | 24 ms
10,624 KB |
testcase_07 | AC | 25 ms
10,624 KB |
testcase_08 | AC | 25 ms
10,752 KB |
testcase_09 | AC | 33 ms
10,880 KB |
testcase_10 | AC | 84 ms
12,672 KB |
testcase_11 | AC | 106 ms
13,568 KB |
testcase_12 | AC | 111 ms
13,568 KB |
ソースコード
N = int(input()) matchsticks = [6, 2, 5, 5, 4, 5, 6, 3, 7, 6] min_matchsticks = min(matchsticks) num_digits = N // min_matchsticks remaining_matchsticks = N % min_matchsticks result = [str(matchsticks.index(min_matchsticks))] * num_digits for i in range(num_digits): for j in range(9, -1, -1): if matchsticks[j] - min_matchsticks <= remaining_matchsticks: result[i] = str(j) remaining_matchsticks -= matchsticks[j] - min_matchsticks break print("".join(result))