結果

問題 No.35 タイパー高橋
ユーザー jimanojimano
提出日時 2018-01-13 18:52:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 459 bytes
コンパイル時間 3,604 ms
コンパイル使用メモリ 76,244 KB
実行使用メモリ 58,144 KB
最終ジャッジ日時 2024-06-06 10:16:38
合計ジャッジ時間 5,106 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
57,828 KB
testcase_01 AC 232 ms
58,144 KB
testcase_02 AC 248 ms
57,844 KB
testcase_03 AC 249 ms
57,812 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