結果
問題 | No.146 試験監督(1) |
ユーザー | uafr_cs |
提出日時 | 2015-05-15 13:32:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 322 ms / 1,000 ms |
コード長 | 1,388 bytes |
コンパイル時間 | 2,067 ms |
コンパイル使用メモリ | 77,360 KB |
実行使用メモリ | 46,212 KB |
最終ジャッジ日時 | 2024-07-06 03:56:02 |
合計ジャッジ時間 | 3,946 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 320 ms
45,848 KB |
testcase_01 | AC | 322 ms
46,052 KB |
testcase_02 | AC | 320 ms
46,212 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); final long MOD = 1000000007; long sum = 0; for(int i = 0; i < N; i++){ final long C = sc.nextLong(); final long D = sc.nextLong() % MOD; sum += (((C + 1) / 2) % MOD) * D; sum %= MOD; } System.out.println(sum); } public static class Scanner { private BufferedReader br; private StringTokenizer tok; public Scanner(InputStream is) throws IOException { br = new BufferedReader(new InputStreamReader(is)); } private void getLine() throws IOException { while (!hasNext()) { tok = new StringTokenizer(br.readLine()); } } private boolean hasNext() { return tok != null && tok.hasMoreTokens(); } public String next() throws IOException { getLine(); return tok.nextToken(); } public int nextInt() throws IOException { return Integer.parseInt(next()); } public long nextLong() throws IOException { return Long.parseLong(next()); } public void close() throws IOException { br.close(); } } }