結果
| 問題 |
No.1343 Dividing Digit
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-01-16 13:57:41 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 94 bytes |
| コンパイル時間 | 126 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 17,192 KB |
| 最終ジャッジ日時 | 2024-11-27 14:49:16 |
| 合計ジャッジ時間 | 1,856 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 22 |
ソースコード
n,k=map(int,input().split())
a=list(map(str,input().split()))
print(int("".join(a),k)%sum(a))