結果
問題 | No.111 あばばばば |
ユーザー | zazaboon |
提出日時 | 2017-01-23 16:08:22 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 87 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 19,360 KB |
最終ジャッジ日時 | 2024-06-02 10:45:18 |
合計ジャッジ時間 | 6,943 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 82 ms
12,416 KB |
testcase_01 | AC | 81 ms
12,160 KB |
testcase_02 | AC | 85 ms
12,160 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
a = gets.chomp.to_i n = a ans = 0 while(n > 2) ans += (a - n + 1) n-=2 end puts ans