結果

問題 No.276 連続する整数の和(1)
ユーザー fjafjafjafjafjafja
提出日時 2017-09-19 17:48:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 166 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 73,616 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-11-08 05:37:47
合計ジャッジ時間 3,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,032 KB
testcase_01 AC 128 ms
41,132 KB
testcase_02 AC 128 ms
41,204 KB
testcase_03 AC 128 ms
41,244 KB
testcase_04 AC 132 ms
41,012 KB
testcase_05 AC 120 ms
40,148 KB
testcase_06 AC 114 ms
40,272 KB
testcase_07 AC 113 ms
40,340 KB
testcase_08 AC 126 ms
41,324 KB
testcase_09 AC 127 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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