結果

問題 No.2451 Redistribute Integers
ユーザー tatt61880tatt61880
提出日時 2023-09-17 11:18:38
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 2,864 ms
コンパイル使用メモリ 146,312 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-06-11 11:08:32
合計ジャッジ時間 6,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 252 ms
7,680 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 185 ms
7,680 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 78 ms
5,376 KB
testcase_13 AC 232 ms
7,552 KB
testcase_14 AC 244 ms
7,680 KB
testcase_15 AC 120 ms
5,760 KB
testcase_16 AC 105 ms
5,504 KB
testcase_17 AC 170 ms
6,656 KB
testcase_18 AC 232 ms
7,680 KB
testcase_19 AC 19 ms
5,376 KB
testcase_20 AC 183 ms
6,656 KB
testcase_21 AC 228 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var a: []int :: #[n]int
	for i(0, n - 1)
		do a[i] :: cui@inputInt()
	end for
	
	var ans: bool :: true
	for i(1, n - 1)
		if((a[i] - a[0]) % n <> 0)
			do ans :: false
			break i
		end if
	end for
	do cui@print((ans ?("Yes", "No")) ~ "\n")
end func
0