結果
問題 | No.146 試験監督(1) |
ユーザー | norioc |
提出日時 | 2015-09-13 11:30:28 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 799 bytes |
コンパイル時間 | 4,157 ms |
コンパイル使用メモリ | 103,296 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-07-19 06:20:46 |
合計ジャッジ時間 | 1,840 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
コンパイルメッセージ
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.Generic; using System.Linq; class Program { static string ReadLine() { return Console.ReadLine().Trim(); } static int ReadInt() { return int.Parse(Console.ReadLine()); } static int[] ReadInts() { return ReadLine().Split().Select(int.Parse).ToArray(); } static string[] ReadStrings() { return ReadLine().Split(); } static void Main() { int n = ReadInt(); long ans = 0; const long mod = 1000000007; for (int i = 0; i < n; i++) { int[] ss = ReadInts(); int c = ss[0], d = ss[1]; // c 個の椅子がある机に座れる人数 int m = (c / 2) + (c % 2); ans = (ans + (m % mod) * (d % mod)) % mod; } Console.WriteLine(ans); } }