結果
問題 | No.111 あばばばば |
ユーザー | abc |
提出日時 | 2016-11-04 14:14:41 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 265 bytes |
コンパイル時間 | 1,993 ms |
コンパイル使用メモリ | 74,412 KB |
実行使用メモリ | 54,280 KB |
最終ジャッジ日時 | 2024-11-25 02:53:44 |
合計ジャッジ時間 | 3,864 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
53,900 KB |
testcase_01 | AC | 129 ms
54,060 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 132 ms
53,920 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 131 ms
54,280 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int lengthString = sc.nextInt(); System.out.println((lengthString - 1) * (lengthString - 1) / 4); } }