結果
問題 | No.146 試験監督(1) |
ユーザー | kuuso1 |
提出日時 | 2015-02-08 23:28:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 135 ms / 1,000 ms |
コード長 | 1,077 bytes |
コンパイル時間 | 1,994 ms |
コンパイル使用メモリ | 107,264 KB |
実行使用メモリ | 22,656 KB |
最終ジャッジ日時 | 2024-06-23 07:13:41 |
合計ジャッジ時間 | 3,050 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
22,656 KB |
testcase_01 | AC | 129 ms
22,528 KB |
testcase_02 | AC | 130 ms
22,656 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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));} }