結果
問題 | No.2034 Anti Lexicography |
ユーザー | Vishant Sandilya |
提出日時 | 2022-08-12 21:39:55 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 122 ms / 2,000 ms |
コード長 | 637 bytes |
コンパイル時間 | 3,154 ms |
コンパイル使用メモリ | 74,720 KB |
実行使用メモリ | 53,936 KB |
最終ジャッジ日時 | 2024-09-23 01:32:38 |
合計ジャッジ時間 | 5,407 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 |
ソースコード
package com.company.Algorithm.DP; import java.io.*; import java.util.*; public class temp { public static void main(String[]args)throws IOException { BufferedReader buf =new BufferedReader(new InputStreamReader(System.in)); int n=Integer.parseInt(buf.readLine()); String p=buf.readLine(); StringBuilder ams=new StringBuilder(""); char[]est=p.toCharArray(); //Arrays.sort(est); //System.out.println(Arrays.toString(est)); for(char ch:est) { ams.append((char)('z'-(ch-'a'))); } System.out.println(ams); } }