結果
問題 | No.71 そろばん |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-17 22:22:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 384 bytes |
コンパイル時間 | 2,458 ms |
コンパイル使用メモリ | 76,732 KB |
実行使用メモリ | 65,460 KB |
最終ジャッジ日時 | 2024-06-24 12:22:02 |
合計ジャッジ時間 | 41,606 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | OLE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | OLE | - |
testcase_06 | OLE | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | OLE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | OLE | - |
testcase_14 | WA | - |
testcase_15 | OLE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | OLE | - |
testcase_19 | OLE | - |
testcase_20 | OLE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int n = sc.nextInt(); long max = -1; for (int i=0; i<=n; i++) { long top = i; long bottom = n-i; long num = bottom*(top+1)+top; if (max < num) {max =num ;} System.out.println(top+":"+bottom+":"+max); } System.out.println(max); } }