結果
問題 | No.146 試験監督(1) |
ユーザー | spacia |
提出日時 | 2016-01-03 17:31:22 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,023 bytes |
コンパイル時間 | 2,073 ms |
コンパイル使用メモリ | 78,700 KB |
実行使用メモリ | 74,488 KB |
最終ジャッジ日時 | 2024-09-19 10:51:52 |
合計ジャッジ時間 | 6,520 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
ソースコード
import java.io.*; import java.util.*; import java.math.*; class Main { public static void out (Object o) { System.out.println(o); } public static BigDecimal cut (BigDecimal b) { String str = b.toString(); int len = str.length(); return len <= 10 ? b : new BigDecimal(str.substring(len - 10,len)); } 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 len = line[1].length(); line[1] = len > 10 ? line[1].substring(len - 10 , len) : line[1]; BigDecimal c = cut(new BigDecimal(line[0]).divide(two).setScale(0 , RoundingMode.CEILING)); BigDecimal d = new BigDecimal(line[1]); ans = ans.add(c.multiply(d)).remainder(m); } out(ans); } }