結果

問題 No.146 試験監督(1)
コンテスト
ユーザー norioc
提出日時 2015-09-13 11:30:28
言語 C#(csc)
(csc 3.9.0)
コンパイル:
csc -langversion:latest -unsafe -warn:0 -o+ /r:System.Numerics.dll _filename_ -out:a.exe
実行:
/usr/bin/mono a.exe
結果
RE  
実行時間 -
コード長 799 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,028 ms
コンパイル使用メモリ 113,068 KB
実行使用メモリ 138,644 KB
最終ジャッジ日時 2026-04-02 14:44:50
合計ジャッジ時間 7,074 ms
ジャッジサーバーID
(参考情報)
judge4_1 / judge5_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 2 MLE * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #
raw source code

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