結果
問題 | No.146 試験監督(1) |
ユーザー | norioc |
提出日時 | 2015-09-13 11:33:49 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 169 ms / 1,000 ms |
コード長 | 848 bytes |
コンパイル時間 | 954 ms |
コンパイル使用メモリ | 104,704 KB |
実行使用メモリ | 21,760 KB |
最終ジャッジ日時 | 2024-07-19 06:20:48 |
合計ジャッジ時間 | 2,091 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 168 ms
21,760 KB |
testcase_01 | AC | 169 ms
21,760 KB |
testcase_02 | AC | 169 ms
21,632 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.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++) { string[] ss = ReadStrings(); long c = long.Parse(ss[0]); long d = long.Parse(ss[1]); // c 個の椅子がある机に座れる人数 long m = (c / 2) + (c % 2); ans = (ans + (m % mod) * (d % mod)) % mod; } Console.WriteLine(ans); } }