結果

問題 No.35 タイパー高橋
ユーザー kano_townkano_town
提出日時 2014-11-21 15:00:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 267 ms / 5,000 ms
コード長 467 bytes
コンパイル時間 3,862 ms
コンパイル使用メモリ 77,060 KB
実行使用メモリ 45,552 KB
最終ジャッジ日時 2024-06-10 21:30:55
合計ジャッジ時間 5,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
45,028 KB
testcase_01 AC 258 ms
45,332 KB
testcase_02 AC 263 ms
44,712 KB
testcase_03 AC 267 ms
45,552 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