結果

問題 No.276 連続する整数の和(1)
ユーザー fjafjafjafjafjafja
提出日時 2017-09-19 17:39:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 2,804 ms
コンパイル使用メモリ 73,904 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-11-08 05:37:43
合計ジャッジ時間 4,018 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,096 KB
testcase_01 AC 128 ms
41,176 KB
testcase_02 AC 114 ms
40,272 KB
testcase_03 WA -
testcase_04 AC 125 ms
41,328 KB
testcase_05 WA -
testcase_06 AC 129 ms
41,132 KB
testcase_07 WA -
testcase_08 AC 129 ms
41,000 KB
testcase_09 AC 128 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{public static void main(String[] args){Scanner sc=new Scanner(System.in);int x=sc.nextInt();x=(x%2==0)?((int)Math.pow(x/2,2)):x;System.out.println(x);}}
0