結果

問題 No.35 タイパー高橋
ユーザー jimanojimano
提出日時 2018-01-13 18:52:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 459 bytes
コンパイル時間 3,653 ms
コンパイル使用メモリ 76,252 KB
実行使用メモリ 57,964 KB
最終ジャッジ日時 2024-12-24 00:55:33
合計ジャッジ時間 5,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
57,548 KB
testcase_01 AC 215 ms
57,964 KB
testcase_02 AC 233 ms
57,740 KB
testcase_03 AC 249 ms
57,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.util.Scanner;

public class No0035 {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int N = sc.nextInt();
			int sumTyped = 0;
			int sumAll = 0;

			for (int i = 0; i < N; i++) {
				int T = sc.nextInt();
				int S = sc.next().length();

				sumTyped += Math.min((12 * T / 1000), S);
				sumAll += S;
			}

			System.out.println(sumTyped + " " + (sumAll - sumTyped));
		}
	}
}
0