結果
問題 | No.111 あばばばば |
ユーザー | ebicochineal |
提出日時 | 2016-06-16 08:40:06 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 280 bytes |
コンパイル時間 | 11,948 ms |
コンパイル使用メモリ | 235,680 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 05:15:35 |
合計ジャッジ時間 | 12,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" ) func main() { n := InputInt()/2 fmt.Println(n*n) } var sc = bufio.NewScanner(os.Stdin) func InputInt() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil {panic(e)} return i }