結果
問題 | No.146 試験監督(1) |
ユーザー | いともたやすく行われるえげつない行為 |
提出日時 | 2017-02-23 14:25:26 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 163 ms / 1,000 ms |
コード長 | 492 bytes |
コンパイル時間 | 13,173 ms |
コンパイル使用メモリ | 248,556 KB |
実行使用メモリ | 14,036 KB |
最終ジャッジ日時 | 2025-01-02 18:27:15 |
合計ジャッジ時間 | 12,687 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 161 ms
14,032 KB |
testcase_01 | AC | 159 ms
14,036 KB |
testcase_02 | AC | 163 ms
14,024 KB |
ソースコード
package main import ( "bufio" "fmt" "io" "os" ) var modVar = int64(1e9) + int64(7) func solve(in io.Reader, out, err io.Writer) { num, size, count, total := 0, int64(0), int64(0), int64(0) fmt.Fscan(in, &num) for i := 0; i < num; i++ { fmt.Fscan(in, &size, &count) size = (size + 1) / 2 total = (total + (size % modVar * (count % modVar))) % modVar } fmt.Fprintln(out,total) } func main() { br := bufio.NewReaderSize(os.Stdin, int(1e7)) solve(br, os.Stdout, os.Stderr) }