結果
問題 | No.146 試験監督(1) |
ユーザー | ebicochineal |
提出日時 | 2016-06-06 02:18:15 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 33 ms / 1,000 ms |
コード長 | 1,167 bytes |
コンパイル時間 | 11,228 ms |
コンパイル使用メモリ | 227,124 KB |
実行使用メモリ | 7,708 KB |
最終ジャッジ日時 | 2024-10-11 01:01:02 |
合計ジャッジ時間 | 12,360 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
7,708 KB |
testcase_01 | AC | 33 ms
7,708 KB |
testcase_02 | AC | 31 ms
7,708 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" "math" "strings" ) func main() { N := InputInt() var c, d, a int64 mod := int64(math.Pow(10, 9)) + 7 for i := 0; i < N; i++ { s := strings.Split(Input(), " ") c = ((ToInt64(s[0]) + 1) / 2) % mod d = ToInt64(s[1]) % mod a += c * d a %= mod } Print(a) } func Print(x ...interface{}){ l := len(x) - 1 for ii, vi := range x { fmt.Print(vi) if ii == l { fmt.Print("\n") } else { fmt.Print(" ") } } } var sc = bufio.NewScanner(os.Stdin) func Input() string { sc.Scan() return sc.Text() } func InputInt() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil {panic(e)} return i } func BinCount(x int) int { s := fmt.Sprintf("%b", x) c := 0 for _, i := range s { if i == '1' {c += 1} } return c } func ToInt(x string) int { i, e := strconv.Atoi(x) if e != nil {panic(e)} return i } func ToInt64(x string) int64 { i, e := strconv.ParseInt(x, 10, 64) if e != nil {panic(e)} return i }