結果

問題 No.2451 Redistribute Integers
ユーザー ニックネームニックネーム
提出日時 2023-09-01 21:29:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 71,248 KB
最終ジャッジ日時 2024-06-11 10:59:37
合計ジャッジ時間 3,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 229 ms
71,248 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 250 ms
68,200 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 24 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 109 ms
29,040 KB
testcase_13 AC 233 ms
65,728 KB
testcase_14 AC 206 ms
67,208 KB
testcase_15 AC 129 ms
38,360 KB
testcase_16 AC 142 ms
34,980 KB
testcase_17 AC 230 ms
52,828 KB
testcase_18 AC 227 ms
65,472 KB
testcase_19 AC 44 ms
16,440 KB
testcase_20 AC 231 ms
52,972 KB
testcase_21 AC 293 ms
68,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
print("Yes" if len({v%n for v in a})==1 else "No")
0