結果
| 問題 | No.111 あばばばば |
| コンテスト | |
| ユーザー |
ebicochineal
|
| 提出日時 | 2016-06-16 08:40:06 |
| 言語 | Go (1.26.1) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 280 bytes |
| 記録 | |
| コンパイル時間 | 11,840 ms |
| コンパイル使用メモリ | 273,944 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-27 11:39:51 |
| 合計ジャッジ時間 | 12,449 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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
}
ebicochineal