結果

問題 No.146 試験監督(1)
ユーザー spaciaspacia
提出日時 2016-01-03 17:02:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 937 bytes
コンパイル時間 2,374 ms
コンパイル使用メモリ 78,468 KB
実行使用メモリ 64,980 KB
最終ジャッジ日時 2023-10-19 14:42:31
合計ジャッジ時間 6,554 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
		
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		BigDecimal ans = BigDecimal.ZERO;
		BigDecimal two = BigDecimal.valueOf(2);
		BigDecimal m = BigDecimal.valueOf(1000000007);
		
		for (int i = 0; i < n; i++) {
			String[] line = br.readLine().split(" ");
			int len0 = line[0].length() , len1 = line[1].length();
			line[0] = len0 > 9 ? line[0].substring(len0 - 9 , len0) : line[0];
			line[1] = len1 > 9 ? line[1].substring(len1 - 9 , len1) : line[1];
			BigDecimal c = new BigDecimal(line[0]);
			BigDecimal d = new BigDecimal(line[1]);
			ans = ans.add(c.divide(two).setScale(0 , RoundingMode.CEILING).multiply(d).remainder(m));
		}
		
		out(ans);
	}
}
0