結果

問題 No.1986 Yummy
ユーザー kusagame12kusagame12
提出日時 2023-11-22 21:29:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 3,426 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-09-26 07:40:32
合計ジャッジ時間 7,357 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,068 KB
testcase_01 AC 137 ms
41,120 KB
testcase_02 AC 154 ms
41,156 KB
testcase_03 AC 152 ms
41,376 KB
testcase_04 AC 155 ms
40,900 KB
testcase_05 AC 151 ms
41,228 KB
testcase_06 AC 151 ms
40,924 KB
testcase_07 AC 155 ms
41,024 KB
testcase_08 AC 156 ms
41,068 KB
testcase_09 AC 155 ms
41,324 KB
testcase_10 AC 149 ms
40,912 KB
testcase_11 AC 151 ms
40,844 KB
testcase_12 AC 152 ms
41,296 KB
testcase_13 AC 151 ms
40,788 KB
testcase_14 AC 151 ms
41,184 KB
testcase_15 AC 153 ms
41,088 KB
testcase_16 AC 152 ms
40,960 KB
testcase_17 AC 144 ms
41,284 KB
testcase_18 AC 157 ms
40,992 KB
testcase_19 AC 154 ms
40,940 KB
testcase_20 AC 153 ms
41,424 KB
testcase_21 AC 153 ms
40,996 KB
testcase_22 AC 157 ms
41,100 KB
testcase_23 AC 153 ms
41,132 KB
testcase_24 AC 155 ms
41,120 KB
testcase_25 AC 153 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
      
        System.out.println(n % 2 == 0 ? n / 2 : 1);
        
    }
    
}
0