結果
問題 |
No.1940 Escape through + -
|
ユーザー |
|
提出日時 | 2022-05-18 20:02:09 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 110 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 18,724 KB |
最終ジャッジ日時 | 2024-09-16 23:14:14 |
合計ジャッジ時間 | 2,780 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 25 |
ソースコード
N, M, S = map(int, input().split()) A = map(int, input().split()) print("No" if (sum(A) - S) % M else "Yes")