結果

問題 No.35 タイパー高橋
ユーザー mits58mits58
提出日時 2016-07-02 15:32:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 5,000 ms
コード長 385 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 76,784 KB
実行使用メモリ 52,792 KB
最終ジャッジ日時 2024-10-12 00:55:16
合計ジャッジ時間 3,915 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
51,540 KB
testcase_01 AC 240 ms
51,236 KB
testcase_02 AC 245 ms
52,792 KB
testcase_03 AC 253 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			int cor=0,miss=0;
			for(int i=0;i<n;i++){
				int t=sc.nextInt();
				int s=(sc.next()).length();
				cor+=Math.min(s,3*t/250);
				miss+=Math.max(0,s-3*t/250);
			}
			System.out.println(cor+" "+miss);
		}
	}
}
0