結果
| 問題 |
No.671 1000000007
|
| コンテスト | |
| ユーザー |
moti
|
| 提出日時 | 2018-05-17 21:17:21 |
| 言語 | Go (1.23.4) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 244 bytes |
| コンパイル時間 | 13,691 ms |
| コンパイル使用メモリ | 218,876 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 13:32:36 |
| 合計ジャッジ時間 | 14,326 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
ソースコード
package main
import (
"bufio"
"fmt"
"math"
"os"
)
var sc = bufio.NewScanner(os.Stdin)
func nextLine() string {
sc.Scan()
return sc.Text()
}
func main() {
line := nextLine()
fmt.Println(int(math.Abs(float64((len(line) - 2) - 8))))
}
moti