(SPOJ) 8701 - Tacógrafo - Solução

import java.io.*;
import java.util.*;

class Main {
    public static void main(String[] args) throws NumberFormatException, IOException {
        Main processando = new Main();
        processando.processa();
       
        System.exit(0);
    }
   
    void processa() throws NumberFormatException, IOException {
        Scanner scan = new Scanner(System.in);
       
        int valor = scan.nextInt();
        int distPercorrida = 0;
        for (int i = 0; i < valor; i++) {
            int tempo = scan.nextInt();
            int velocidade = scan.nextInt();

            int multiplica = tempo*velocidade;
            distPercorrida += multiplica;
        }
       
        System.out.println(distPercorrida);
               
        return;
    }
}

Comments

Popular posts from this blog

(Coderbyte) Powers of Two - Solução

(Coderbyte) Dash Insert II - Solução

(CoderByte) Number Search - Solução