結果

問題 No.1940 Escape through + -
ユーザー Tna
提出日時 2022-07-08 09:41:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 181 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 21,672 KB
最終ジャッジ日時 2024-12-26 08:19:04
合計ジャッジ時間 3,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

# 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 T % m == s % m:
    print("Yes")
else:
    print("No")
0