結果

問題 No.35 タイパー高橋
ユーザー HEGO55HEGO55
提出日時 2017-05-21 00:04:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 85,908 KB
実行使用メモリ 62,912 KB
最終ジャッジ日時 2023-10-19 04:17:13
合計ジャッジ時間 4,047 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

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++){
			if(second[j]>1000){
				second[j] = 1000;
			}
			actualStr += Math.floor(12*(second[j]/1000));
		}
		
		System.out.println(actualStr+" "+(strLength - actualStr));
	}
}
0