結果

問題 No.1940 Escape through + -
ユーザー 👑 Kazun
提出日時 2022-05-18 20:06:51
言語 PyPy3
(7.3.23 + ACL)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 80 ms / 2,000 ms
+ 656µs
コード長 106 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 242 ms
コンパイル使用メモリ 95,848 KB
実行使用メモリ 98,432 KB
最終ジャッジ日時 2026-08-29 03:19:10
合計ジャッジ時間 4,221 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N,M,S=map(int,input().split())
A=list(map(int,input().split()))
print("Yes" if (sum(A)-S)%M==0 else "No")
0