結果

問題 No.35 タイパー高橋
ユーザー HEGO55HEGO55
提出日時 2017-05-21 01:15:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 262 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 76,952 KB
実行使用メモリ 46,028 KB
最終ジャッジ日時 2024-09-19 00:33:27
合計ジャッジ時間 4,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
44,864 KB
testcase_01 AC 255 ms
45,604 KB
testcase_02 AC 262 ms
45,568 KB
testcase_03 AC 259 ms
46,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class No35{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		double[] second = new double[N];
		String[] str = new String[N];
		long strLength = 0;
		long actualStr = 0;
		
		for(int i=0; i<N; i++){
			second[i] = sc.nextInt();
			str[i] = sc.next();
			strLength += str[i].length();
		}
		
		for(int j=0; j<N; j++){
			long Naruheso = (long)Math.floor(12*(second[j]/1000));
			if(Naruheso > str[j].length()){
				actualStr += str[j].length();
			}else{
				actualStr += Naruheso;
			}
		}
	    System.out.println(actualStr+" "+(strLength - actualStr));
	}
}
0