結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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.

ソースコード

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++) {
            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);
    }
}
0