結果

問題 No.406 鴨等間隔の法則
ユーザー nobigomunobigomu
提出日時 2018-04-27 19:33:41
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 12:23:07
合計ジャッジ時間 2,457 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 69 ms
6,944 KB
testcase_05 AC 26 ms
6,940 KB
testcase_06 AC 28 ms
6,940 KB
testcase_07 AC 29 ms
6,944 KB
testcase_08 AC 72 ms
6,940 KB
testcase_09 AC 75 ms
6,944 KB
testcase_10 AC 29 ms
6,944 KB
testcase_11 AC 59 ms
6,940 KB
testcase_12 AC 38 ms
6,940 KB
testcase_13 AC 35 ms
6,944 KB
testcase_14 AC 65 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 6 ms
6,944 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 6 ms
6,940 KB
testcase_19 AC 7 ms
6,944 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 10 ms
6,940 KB
testcase_22 AC 16 ms
6,940 KB
testcase_23 AC 40 ms
6,940 KB
testcase_24 AC 59 ms
6,944 KB
testcase_25 AC 80 ms
6,940 KB
testcase_26 AC 79 ms
6,940 KB
testcase_27 AC 57 ms
6,940 KB
testcase_28 AC 81 ms
6,944 KB
testcase_29 AC 77 ms
6,940 KB
testcase_30 AC 78 ms
6,940 KB
testcase_31 AC 77 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print((function (f, n)
	local a,t = f()
	if t==0 then return "NO" end
	for i=2,n-1 do if t~=a[i+1]-a[i] then return "NO" end end
	return "YES"
end)(function ()
	local a = {}
	for e in io.stdin:read("*l"):gmatch("%d+") do table.insert(a,tonumber(e)) end
	table.sort(a)
	return a,a[2]-a[1]
end, tonumber(io.stdin:read("*l"))))
0