結果

問題 No.185 和風
ユーザー megane_ankomegane_anko
提出日時 2021-02-17 01:06:20
言語 TypeScript
(5.7.2)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 8,836 ms
コンパイル使用メモリ 228,564 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-12-31 16:26:53
合計ジャッジ時間 9,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
39,296 KB
testcase_01 AC 66 ms
41,332 KB
testcase_02 AC 63 ms
39,296 KB
testcase_03 AC 65 ms
39,424 KB
testcase_04 AC 64 ms
41,328 KB
testcase_05 WA -
testcase_06 AC 71 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import * as fs from 'fs';
const input = fs.readFileSync('/dev/stdin', 'utf8');

const arr1 = input.split('\n');
const arr2 = [];
const rarr = [];

let n = parseInt(arr1[0]);
let result = 0;

for (let i = 1; i < n + 1; i++) {
    arr2.push(arr1[i]);
}

for (let j = 0; j < n; j++) {
    const arr3 = arr2[j].split(' ');
    let result = parseInt(arr3[1]) -parseInt(arr3[0]);//要素は2つって決まってるから
    rarr.push(result);
}

for (let k = 0; k < n; k++) {
    if (rarr[k] === rarr[k + 1]) {
        result = result + 1;
    }
}

if (result === (n - 1)) {
    if (rarr[0] < 0) {
        console.log("-1");
    } else {
        console.log(rarr[0]);
    }
} else {
    console.log("-1");
}
0