結果

問題 No.2451 Redistribute Integers
ユーザー 👑 p-adicp-adic
提出日時 2023-07-06 19:38:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 99 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 67,340 KB
最終ジャッジ日時 2024-06-11 10:56:18
合計ジャッジ時間 3,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 249 ms
67,340 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 165 ms
61,176 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 80 ms
28,680 KB
testcase_13 AC 239 ms
65,604 KB
testcase_14 AC 237 ms
67,080 KB
testcase_15 AC 136 ms
38,372 KB
testcase_16 AC 100 ms
35,244 KB
testcase_17 AC 143 ms
50,360 KB
testcase_18 AC 239 ms
65,608 KB
testcase_19 AC 39 ms
14,740 KB
testcase_20 AC 148 ms
53,976 KB
testcase_21 AC 180 ms
65,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:4: SyntaxWarning: invalid decimal literal
  print(["No","Yes"][all((A[0]-a)%N<1for a in A)])

ソースコード

diff #

I=input
N=int(I())
A=list(map(int,I().split()))
print(["No","Yes"][all((A[0]-a)%N<1for a in A)])
0