ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1314. Chase in Subway

To admins: incorrect 'Compilation Error' verdict with Visual C++ 2017 compiler
Posted by Smilodon_am [Obninsk INPE] 4 Dec 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