結果

問題 No.146 試験監督(1)
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 13:31:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,368 bytes
コンパイル時間 2,564 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 58,500 KB
最終ジャッジ日時 2023-09-20 08:06:37
合計ジャッジ時間 3,968 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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();
			
			sum += (C + 1) / 2 * 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();
	    }
	}
}
0