結果

問題 No.146 試験監督(1)
ユーザー noriocnorioc
提出日時 2015-09-13 11:33:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 201 ms / 1,000 ms
コード長 848 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 104,776 KB
実行使用メモリ 29,124 KB
最終ジャッジ日時 2023-09-26 11:43:47
合計ジャッジ時間 3,516 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
24,796 KB
testcase_01 AC 199 ms
29,124 KB
testcase_02 AC 201 ms
28,904 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.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);
    }
}
0