結果

問題 No.2140 Triangle
ユーザー AsahiAsahi
提出日時 2022-12-14 18:44:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 2,732 ms
コンパイル使用メモリ 73,880 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-11-08 10:30:48
合計ジャッジ時間 7,789 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,588 KB
testcase_01 AC 136 ms
41,424 KB
testcase_02 AC 138 ms
41,512 KB
testcase_03 AC 137 ms
41,656 KB
testcase_04 AC 135 ms
41,200 KB
testcase_05 AC 137 ms
41,736 KB
testcase_06 AC 123 ms
40,328 KB
testcase_07 AC 136 ms
41,512 KB
testcase_08 AC 138 ms
41,136 KB
testcase_09 AC 136 ms
41,380 KB
testcase_10 AC 137 ms
41,580 KB
testcase_11 AC 137 ms
41,756 KB
testcase_12 AC 135 ms
41,440 KB
testcase_13 AC 136 ms
41,376 KB
testcase_14 AC 136 ms
41,592 KB
testcase_15 AC 135 ms
41,340 KB
testcase_16 AC 134 ms
41,548 KB
testcase_17 AC 136 ms
41,380 KB
testcase_18 AC 136 ms
41,364 KB
testcase_19 AC 134 ms
41,292 KB
testcase_20 AC 134 ms
41,396 KB
testcase_21 AC 134 ms
41,560 KB
testcase_22 AC 136 ms
41,588 KB
testcase_23 AC 138 ms
41,460 KB
testcase_24 AC 136 ms
41,628 KB
testcase_25 AC 135 ms
41,332 KB
testcase_26 AC 136 ms
41,716 KB
testcase_27 AC 137 ms
41,468 KB
testcase_28 AC 137 ms
41,508 KB
testcase_29 AC 137 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
 
class Main{
    public static final int INF = Integer.MAX_VALUE;
    public static PrintWriter out = new PrintWriter(System.out);
    public static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException {
        int A = sc.nextInt();
        long ans = 0;
        //必要条件 a + b > c || a + c > b
        //A == B のとき
        ans += (A*2)-1;
        out.print(ans);
        out.flush();
    }
}
0