結果
問題 | No.2451 Redistribute Integers |
ユーザー |
|
提出日時 | 2023-09-01 21:31:43 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 206 ms / 2,000 ms |
コード長 | 145 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 231,388 KB |
最終ジャッジ日時 | 2024-06-11 11:00:03 |
合計ジャッジ時間 | 3,469 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
N = int(input()) A = list(map(int, input().split())) B = set([A[i] % N for i in range(N)]) if len(B) == 1: print("Yes") else: print("No")