結果
問題 | No.1992 Tendon Walk |
ユーザー | Lisp_Coder |
提出日時 | 2022-12-24 01:15:12 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 153 bytes |
コンパイル時間 | 12,167 ms |
コンパイル使用メモリ | 225,292 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-18 05:03:53 |
合計ジャッジ時間 | 12,808 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
ソースコード
package main import ( "fmt" ) func main() { var x int fmt.Scan(&x) if x == 2 { fmt.Println(2) } else { fmt.Println(4 + x%2 + (x-3)/2*10) } }