結果

問題 No.2734 Addition and Multiplication in yukicoder (Hard)
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-11-26 00:42:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,722 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 127,072 KB
最終ジャッジ日時 2024-11-26 00:43:13
合計ジャッジ時間 27,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,400 KB
testcase_01 AC 50 ms
54,272 KB
testcase_02 AC 49 ms
54,400 KB
testcase_03 AC 45 ms
54,400 KB
testcase_04 AC 44 ms
54,528 KB
testcase_05 AC 43 ms
54,784 KB
testcase_06 AC 45 ms
54,528 KB
testcase_07 AC 44 ms
54,656 KB
testcase_08 AC 45 ms
54,528 KB
testcase_09 AC 44 ms
54,656 KB
testcase_10 AC 46 ms
54,656 KB
testcase_11 AC 49 ms
54,784 KB
testcase_12 AC 46 ms
54,272 KB
testcase_13 AC 50 ms
54,400 KB
testcase_14 AC 49 ms
54,784 KB
testcase_15 AC 46 ms
54,272 KB
testcase_16 AC 46 ms
54,400 KB
testcase_17 AC 1,372 ms
116,768 KB
testcase_18 AC 1,397 ms
117,364 KB
testcase_19 AC 56 ms
61,184 KB
testcase_20 AC 49 ms
61,056 KB
testcase_21 AC 51 ms
61,312 KB
testcase_22 AC 1,469 ms
127,072 KB
testcase_23 AC 1,455 ms
126,780 KB
testcase_24 AC 1,438 ms
126,408 KB
testcase_25 AC 1,443 ms
126,552 KB
testcase_26 AC 1,487 ms
126,540 KB
testcase_27 AC 1,438 ms
123,868 KB
testcase_28 AC 1,416 ms
126,016 KB
testcase_29 AC 1,722 ms
125,536 KB
testcase_30 AC 1,426 ms
122,112 KB
testcase_31 AC 1,517 ms
125,900 KB
testcase_32 AC 1,351 ms
122,700 KB
testcase_33 AC 1,023 ms
108,160 KB
testcase_34 AC 1,192 ms
117,720 KB
testcase_35 AC 705 ms
97,932 KB
testcase_36 AC 748 ms
100,380 KB
testcase_37 AC 1,035 ms
109,944 KB
testcase_38 AC 1,030 ms
108,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1612

from functools import cmp_to_key

MOD = 998244353

def cmp_str(a, b):
    a1 = a + b
    a2 = b + a
    if a1 < a2:
        return -1
    elif a1 > a2:
        return 1
    else:
        return 0


def main():
    N = int(input())
    A = input().split()

    A = list(sorted(A, key=cmp_to_key(cmp_str)))

    answer_str = "".join(A)
    answer = 0
    for a in answer_str:
        answer *= 10
        answer %= MOD
        answer += int(a)
        answer %= MOD
    print(answer)



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