結果

問題 No.146 試験監督(1)
ユーザー バカらっくバカらっく
提出日時 2018-03-06 00:00:54
言語 Swift
(5.10.0)
結果
AC  
実行時間 294 ms / 1,000 ms
コード長 337 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 131,492 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-05-07 17:28:08
合計ジャッジ時間 2,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
9,216 KB
testcase_01 AC 294 ms
9,088 KB
testcase_02 AC 292 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let inputCount = Int(readLine()!)!

let mod:Int64 = 1000000000 + 7
var ans:Int64 = 0
for _ in 0..<inputCount {
    let inpt = readLine()!.split(separator: " ").map({Int64($0)!})
    ans += ((inpt[0] / 2) % mod) * (inpt[1] % mod)
    ans = ans % mod
    if inpt[0] % 2 > 0 {
        ans += inpt[1]
    }
    ans = ans % mod
}

print(ans)
0