結果

問題 No.35 タイパー高橋
ユーザー abcabc
提出日時 2016-10-23 11:21:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 739 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 76,112 KB
実行使用メモリ 45,244 KB
最終ジャッジ日時 2024-05-03 04:47:04
合計ジャッジ時間 3,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 237 ms
44,300 KB
testcase_01 AC 240 ms
45,020 KB
testcase_02 AC 247 ms
44,776 KB
testcase_03 AC 249 ms
45,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numSections = sc.nextInt();

        int numTypedTotal = 0;
        int numNotTypedTotal = 0;

        for (int i = 0; i < numSections; i++) {

            int timeRestriction = sc.nextInt();
            int possibleNumTyping = 12 * timeRestriction / 1000;

            String s = sc.next();
            int numLetters = s.length();

            int numTyped = Math.min(numLetters, possibleNumTyping);

            numTypedTotal += numTyped;
            numNotTypedTotal += numLetters - numTyped;

        }

        System.out.println(numTypedTotal + " " + numNotTypedTotal);

    }

}
0