ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1314. Погоня в метро

To admins: incorrect 'Compilation Error' verdict with Visual C++ 2017 compiler
Послано Smilodon_am [Obninsk INPE] 4 дек 2018 01:57
Hello.

I have received strange 'Compilation Error' verdict for my solution on the 1314 task under Microsoft Visual C++ 2017 compiler.

Compilation log is as follows:
/////////////////////////////////////////
lg1vr1-w2nnli(24): error C2062: type 'float' unexpected
lg1vr1-w2nnli(84): warning C4244: 'argument': conversion from 'float' to 'const int', possible loss of data
lg1vr1-w2nnli(94): warning C4018: '<': signed/unsigned mismatch
/////////////////////////////////////////

Lines 23 and 24 of my code are:
/////////////////////////////////////////
const int MAX_STATION_ID = 32767L;
const int INFINITY = 10L * MAX_STATION_ID;
/////////////////////////////////////////


Commits with CE are 8162255, 8162250, 8162248.

But there is successful (Accepted) commit 8162257 (the same code as 8162255) under G++7.1 commit.

Could you check if the CE message was correct or not?

Best regards.

Edited by author 04.12.2018 02:01