結果
| 問題 |
No.1343 Dividing Digit
|
| コンテスト | |
| ユーザー |
𖧱𖦸𖥩𖥣𖥩𖥣
|
| 提出日時 | 2024-06-06 19:36:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 128 bytes |
| コンパイル時間 | 312 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 34,604 KB |
| 最終ジャッジ日時 | 2024-12-24 13:07:58 |
| 合計ジャッジ時間 | 67,997 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | TLE * 22 |
ソースコード
n,k = map(int,input().split()) ls = list(map(int,input().split())) s = 0 for i in range(n): s += ls[-i-1]*k**i print(s%sum(ls))
𖧱𖦸𖥩𖥣𖥩𖥣