結果

問題 No.2049 POP
ユーザー viral8viral8
提出日時 2022-10-01 08:11:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-06-06 02:05:47
合計ジャッジ時間 4,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,256 KB
testcase_01 AC 109 ms
41,292 KB
testcase_02 AC 99 ms
41,292 KB
testcase_03 AC 101 ms
41,344 KB
testcase_04 AC 112 ms
40,936 KB
testcase_05 AC 100 ms
41,364 KB
testcase_06 AC 114 ms
41,328 KB
testcase_07 AC 100 ms
40,148 KB
testcase_08 AC 112 ms
40,964 KB
testcase_09 AC 111 ms
41,124 KB
testcase_10 AC 108 ms
39,960 KB
testcase_11 AC 112 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        System.out.println(sc.next().substring(1,N-1));
    }
}
0