結果

問題 No.35 タイパー高橋
ユーザー yagi2yagi2
提出日時 2017-04-26 11:31:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 400 ms / 5,000 ms
コード長 705 bytes
コンパイル時間 2,471 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 59,268 KB
最終ジャッジ日時 2024-09-13 14:00:43
合計ジャッジ時間 4,558 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
59,208 KB
testcase_01 AC 306 ms
58,956 KB
testcase_02 AC 400 ms
58,928 KB
testcase_03 AC 372 ms
59,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No35;

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());

        int CN = 0;
        int MN = 0;
        for (int i = 0; i < N; i++) {
            int M = Integer.parseInt(sc.next());
            String[] S = sc.next().split("");

            if ((int)Math.floor((12 * M / 1000.0)) >= S.length) {
                CN += S.length;
            } else {
                int tmp = (int)Math.floor(12 * M / 1000.0);
                CN += tmp;
                MN += S.length - tmp;
            }
        }
        System.out.printf("%d %d\n", CN, MN);
    }
}
0