結果
問題 | No.146 試験監督(1) |
ユーザー | dazy |
提出日時 | 2016-09-21 15:53:10 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 699 bytes |
コンパイル時間 | 3,737 ms |
コンパイル使用メモリ | 77,488 KB |
実行使用メモリ | 59,096 KB |
最終ジャッジ日時 | 2024-11-17 10:24:19 |
合計ジャッジ時間 | 8,594 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | WA | - |
testcase_02 | TLE | - |
ソースコード
import java.util.*; public class Run { final static int M = 1000000007; public static void main (String arg[]) { Scanner scan = new Scanner(System.in); int N = scan.nextInt(); String C, D; int c ,d; long ans = 0; for (int i = 0; i < N; i++) { c = d = 0; C = scan.next(); D = scan.next(); for (int j = 0; j < C.length(); j++) c = (c*10 + Integer.valueOf(C.substring(j, j+1))) % M; for (int j = 0; j < D.length(); j++) d = (d*10 + Integer.valueOf(D.substring(j, j+1))) % M; c = (c + 1)/2; ans += (c * d) % M; } System.out.println(ans); } }