結果
| 問題 | No.998 Four Integers |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-25 17:11:31 |
| 言語 | TypeScript (6.0.2) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 526 bytes |
| 記録 | |
| コンパイル時間 | 4,784 ms |
| コンパイル使用メモリ | 350,104 KB |
| 最終ジャッジ日時 | 2026-06-05 04:31:41 |
| 合計ジャッジ時間 | 5,861 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.ts(1,7): error TS7034: Variable 'lines' implicitly has type 'any[]' in some locations where its type cannot be determined. main.ts(7,20): error TS7006: Parameter 'line' implicitly has an 'any' type. main.ts(11,25): error TS7005: Variable 'lines' implicitly has an 'any[]' type.
ソースコード
const lines = [];
const reader = require('readline').createInterface({
input: process.stdin,
output: process.stdout
});
reader.on('line', (line) => {
lines.push(line);
});
reader.on('close', () => {
const input: string = lines[0]
const arr: number[] = input.split(' ').map(str => parseInt(str, 10))
const sortArr = arr.sort((a, b) => a - b)
if (sortArr[1] - sortArr[0] === 1 && sortArr[2] - sortArr[1] === 1 && sortArr[3] - sortArr[2] === 1) {
console.log('Yes');
}else{
console.log('No');
}
});