結果

問題 No.687 E869120 and Constructing Array 1
ユーザー fal_rndfal_rnd
提出日時 2018-05-23 09:09:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 289 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 76,652 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-06-28 16:06:25
合計ジャッジ時間 4,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,692 KB
testcase_01 AC 135 ms
40,672 KB
testcase_02 AC 144 ms
41,344 KB
testcase_03 AC 151 ms
41,776 KB
testcase_04 AC 143 ms
41,432 KB
testcase_05 AC 146 ms
41,552 KB
testcase_06 AC 129 ms
40,460 KB
testcase_07 AC 144 ms
41,504 KB
testcase_08 AC 132 ms
40,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static Scanner s=new Scanner(System.in);
    public static void main(String[] args) {
        int n=s.nextInt();
        if(n<=10)
            System.out.println(1+" "+(n-1));
        else
            System.out.println(10+" "+(n-10));
    }
}
0