結果

問題 No.1643 Not Substring
ユーザー AsahiAsahi
提出日時 2023-02-04 19:46:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,217 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 78,876 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-07-03 16:19:49
合計ジャッジ時間 6,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,308 KB
testcase_01 AC 107 ms
53,048 KB
testcase_02 AC 116 ms
54,004 KB
testcase_03 AC 112 ms
54,292 KB
testcase_04 AC 116 ms
54,236 KB
testcase_05 WA -
testcase_06 AC 118 ms
54,248 KB
testcase_07 AC 103 ms
54,132 KB
testcase_08 AC 114 ms
53,692 KB
testcase_09 AC 99 ms
52,660 KB
testcase_10 AC 111 ms
54,148 KB
testcase_11 AC 113 ms
54,516 KB
testcase_12 AC 101 ms
53,036 KB
testcase_13 AC 111 ms
53,688 KB
testcase_14 AC 114 ms
53,916 KB
testcase_15 AC 116 ms
53,764 KB
testcase_16 AC 116 ms
54,588 KB
testcase_17 AC 113 ms
54,028 KB
testcase_18 AC 115 ms
54,064 KB
testcase_19 AC 115 ms
54,164 KB
testcase_20 AC 103 ms
52,968 KB
testcase_21 AC 123 ms
54,248 KB
testcase_22 AC 116 ms
53,700 KB
testcase_23 AC 101 ms
53,028 KB
testcase_24 AC 119 ms
54,168 KB
testcase_25 WA -
testcase_26 AC 101 ms
53,148 KB
testcase_27 AC 119 ms
53,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
import java.util.stream.Stream;

public class Main{
    /* 入出力 */
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    /* 定数 */
    static final int [] y4 = {0,1,0,-1};
    static final int [] x4 = {1,0,-1,0};
    static final int  INF1 = Integer.MAX_VALUE;
    static final long INF2 = Long.MAX_VALUE;
    static final long MOD1 = (long)1e9+7;
    static final long MOD2 = 998244353;
    /* Main */
    public static void main(String[] args) throws IOException{
        int [] cnt = new int[26];
        char [] m = new char[26];
        for(char i = 'a'; i <= 'z'; i ++) m[i-'a'] = i;
        String s = sc.next();
        int n = s.length();
        int what = 0;
        char k = 'a';
        for(int i=0;i<n;i++) cnt[s.charAt(i) - 'a']++;
        for(int i=0;i<26;i++) {
            if(cnt[i] > 0) {
                what = i;
                break;
            }
        }
        for(int i=0;i<=cnt[what];i++) output.print(m[what]);
        output.flush();
    }
}
0