結果
問題 | No.1407 Kindness |
ユーザー | AEn |
提出日時 | 2022-06-20 18:59:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 569 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 76,008 KB |
最終ジャッジ日時 | 2024-10-13 06:59:02 |
合計ジャッジ時間 | 4,042 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,140 KB |
testcase_01 | AC | 38 ms
52,436 KB |
testcase_02 | AC | 37 ms
53,880 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 37 ms
52,080 KB |
testcase_06 | WA | - |
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 | AC | 87 ms
68,496 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 57 ms
63,224 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 83 ms
66,584 KB |
ソースコード
N = input() sm = [0]*10 mod = 10**9+7 for i in range(1, 10): sm[i] = i+sm[i-1] if len(N) == 1: exit(print(sm[int(N)])) res = 0 ss = 0 for i in range(len(N)): if i == 0: if int(N[0])>1: res += sm[int(N[0])-1]*int(N[i])*pow(45, len(N)-(i+1), mod) res %= mod ss = int(N[0]) else: res += pow(45, len(N)-i, mod) res %= mod if int(N[i])>1: res += ss*sm[int(N[i])-1]*pow(45, len(N)-(i+1), mod) res %= mod ss *= int(N[i]) ss %= mod res += ss print(res%mod)