結果

問題 No.35 タイパー高橋
ユーザー kano_townkano_town
提出日時 2014-11-21 15:00:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 250 ms / 5,000 ms
コード長 467 bytes
コンパイル時間 4,023 ms
コンパイル使用メモリ 78,184 KB
実行使用メモリ 46,000 KB
最終ジャッジ日時 2025-01-02 20:00:55
合計ジャッジ時間 5,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
45,636 KB
testcase_01 AC 225 ms
45,588 KB
testcase_02 AC 230 ms
45,660 KB
testcase_03 AC 250 ms
46,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder35 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(), T;
		String S;

		int ok = 0, ng = 0, type;
		for (int i = 0; i < N; i++) {
			T = sc.nextInt();
			S = sc.next();

			type = (int) (12.0 * (double) T / 1000.0);
			ok += Math.min(S.length(), type);
			ng += Math.max(S.length() - type, 0);
		}
		System.out.println(ok + " " + ng);
	}
}
0