Algorithm
Code Examples
#1 Code Example with C++ Programming
Code -
                                                        C++ Programming
#include <cstdio>
#include <cmath>
#include <iostream>
using namespace std;
int main(){
    int numPoints, numPapers; scanf("%d %d\n", &numPoints, &numPapers);
    double distance = 0;
    int oldX = 0, oldY = 0, newX = 0, newY = 0; 
    scanf("%d %d\n", &oldX, &oldY);
    while(--numPoints){
        scanf("%d %d\n", &newX, &newY);
        distance += sqrt((newX - oldX)*(newX - oldX) + (newY - oldY)*(newY - oldY));
        oldX = newX; oldY = newY;
    }
    const int speed = 50;
    printf("%.9lf\n", numPapers * distance / speed);
    return 0;
}Input
                                                            2 1
0 0
10 0
                                                    0 0
10 0
Output
                                                            0.200000000
                                                                                                                    
                                                    Demonstration
Codeforces Solution-A. Wasted Time-Solution in C, C++, Java, Python
