結果
| 問題 |
No.1940 Escape through + -
|
| ユーザー |
|
| 提出日時 | 2022-07-08 09:42:56 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 71 ms / 2,000 ms |
| コード長 | 186 bytes |
| コンパイル時間 | 161 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 21,668 KB |
| 最終ジャッジ日時 | 2024-12-26 08:24:06 |
| 合計ジャッジ時間 | 2,318 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 25 |
ソースコード
# https://yukicoder.me/problems/no/1940
n, m, s = [int(x) for x in input().split()]
T = [int(x) for x in input().split()]
if sum(T) % m == s % m:
print("Yes")
else:
print("No")