結果
問題 | No.146 試験監督(1) |
ユーザー | ebicochineal |
提出日時 | 2016-06-06 01:53:55 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,150 bytes |
コンパイル時間 | 13,111 ms |
コンパイル使用メモリ | 221,792 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 01:00:49 |
合計ジャッジ時間 | 13,212 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
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]) d = ToInt64(s[1]) a += ((c + 1) / 2 * d) % mod } Print(a % mod) } 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 }