結果

問題 No.2593 Reorder and Mod 120
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-01-05 19:59:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,015 bytes
コンパイル時間 898 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 70,344 KB
最終ジャッジ日時 2024-09-27 19:09:36
合計ジャッジ時間 2,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,088 KB
testcase_01 WA -
testcase_02 AC 48 ms
61,092 KB
testcase_03 AC 50 ms
61,204 KB
testcase_04 AC 50 ms
62,816 KB
testcase_05 AC 43 ms
59,708 KB
testcase_06 AC 48 ms
61,380 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 52 ms
62,784 KB
testcase_12 AC 51 ms
64,296 KB
testcase_13 AC 56 ms
70,184 KB
testcase_14 AC 52 ms
65,356 KB
testcase_15 AC 54 ms
68,020 KB
testcase_16 AC 53 ms
64,220 KB
testcase_17 AC 54 ms
65,572 KB
testcase_18 AC 52 ms
64,480 KB
testcase_19 AC 56 ms
68,944 KB
testcase_20 AC 56 ms
70,064 KB
testcase_21 AC 55 ms
69,740 KB
testcase_22 AC 56 ms
70,164 KB
testcase_23 AC 55 ms
70,344 KB
testcase_24 AC 51 ms
67,864 KB
testcase_25 AC 51 ms
68,000 KB
testcase_26 AC 52 ms
68,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


def main():
    N = int(input())
    S = input()

    array = [0] * 10
    for s in S:
        array[int(s)] += 1

    r_set = set()
    for i1 in range(1, 10):
        for i2 in range(1, 10):
            for i3 in range(1, 10):
                b_array = [0] * 10
                b_array[i1] += 1
                b_array[i2] += 1
                b_array[i3] += 1
                is_ok = True
                for j in range(10):
                    if b_array[j] > array[j]:
                        is_ok = False
                        break

                if is_ok:
                    b = i1 * 100 + i2 * 10 + i3
                    b %= 120

                    for j in range(1, 10):
                        c = array[j] - b_array[j]
                        d = (40 * j) % 120
                        d *= c
                        d %= 120
                        b += d
                        b %= 120
                    r_set.add(b)
    print(len(r_set))      




if __name__ == "__main__":
    main()
0