結果

問題 No.146 試験監督(1)
ユーザー kuuso1kuuso1
提出日時 2015-02-08 23:28:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 181 ms / 1,000 ms
コード長 1,077 bytes
コンパイル時間 3,401 ms
コンパイル使用メモリ 105,204 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2023-09-05 11:35:26
合計ジャッジ時間 3,906 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
26,160 KB
testcase_01 AC 180 ms
26,160 KB
testcase_02 AC 181 ms
28,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
 
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		long mod=(long)(1e9+7);
		long Ans=0;
		for(int i=0;i<N;i++){
			Ans+=(((C[i]+1)/2)%mod)*(D[i]%mod);
			Ans%=mod;
		}
		Console.WriteLine(Ans);
		
		
	}
	int N;
	long[] C,D;
	public Sol(){
		N=ri();
		C=new long[N];
		D=new long[N];
		for(int i=0;i<N;i++){
			var d=rla();
			C[i]=d[0];D[i]=d[1];
		}
	}




	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(){return Console.ReadLine().Split(' ');}
	static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
	static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
	static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}
0