結果
問題 | No.406 鴨等間隔の法則 |
ユーザー | ontama_12 |
提出日時 | 2016-09-26 15:02:12 |
言語 | JavaScript (node v21.7.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,565 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 6,952 KB |
実行使用メモリ | 50,004 KB |
最終ジャッジ日時 | 2024-10-12 23:50:10 |
合計ジャッジ時間 | 6,355 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 73 ms
41,948 KB |
testcase_02 | AC | 74 ms
39,936 KB |
testcase_03 | AC | 77 ms
42,072 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 81 ms
43,904 KB |
testcase_16 | AC | 177 ms
47,188 KB |
testcase_17 | AC | 108 ms
44,544 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
ソースコード
///////////////////////No.406 鴨等間隔の法則 //入力文字読み取り process.stdin.resume(); process.stdin.setEncoding('utf8'); process.stdin.on('data', function (chunk) { //すべて受け取り改行で区切って格納 var inputall = chunk.split("\n"); //かもの総数 var ducks = Number(inputall[0]) //すべて受け取り空白で区切って格納 //かもの座標配列 var duckposition = inputall[1].split(" ").map(Number); //かもの座標配列を小さい順にソート duckposition.sort(function (a, b) { if (a < b) return -1; if (a > b) return 1; return 0; }); var result = "YES"; //同じのがあるか判定 for (var i = 0; i < duckposition.length; i++) { for (var j = i + 1; j < duckposition.length-1; j++) { if (duckposition[i] == duckposition[j]) { result = "NO"; break; } } } var difference = []; //座標が等間隔かを調べる for (var i = 0; i < duckposition.length-1; i++) { difference.push(duckposition[i + 1] - duckposition[i]) } for (var i = 0; i < difference.length - 1; i++) { if (difference[i] == difference[i + 1]) { continue; } else { result = "NO"; break; } } console.log(result); });