結果
問題 | No.111 あばばばば |
ユーザー | abc |
提出日時 | 2016-11-04 14:14:41 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 265 bytes |
コンパイル時間 | 2,018 ms |
コンパイル使用メモリ | 73,872 KB |
実行使用メモリ | 54,284 KB |
最終ジャッジ日時 | 2024-05-03 22:06:44 |
合計ジャッジ時間 | 3,635 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
54,284 KB |
testcase_01 | AC | 119 ms
54,176 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 104 ms
52,824 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 112 ms
53,044 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); } }