結果

問題 No.35 タイパー高橋
ユーザー soujikisoujiki
提出日時 2015-04-24 21:42:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 3,415 ms
コンパイル使用メモリ 76,572 KB
実行使用メモリ 45,732 KB
最終ジャッジ日時 2024-07-05 01:20:58
合計ジャッジ時間 4,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;

public class Yukicoder_35{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int N = stdIn.nextInt();
		int count = 0;
		int miss = 0;
		for(int i=0;i<N;i++){
			int T = stdIn.nextInt();
			String str = stdIn.next();
			int letter = str.length();
			for(int j=1;j<=letter;j++){
				if((double)T>=(double)j*83.333333){
					count++;
				}
				else{
					miss++;
				}
			}
		}

		System.out.println(count+" "+miss);
	}
}
0