結果
問題 |
No.729 文字swap
|
ユーザー |
|
提出日時 | 2018-09-16 16:54:05 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 123 ms / 2,000 ms |
コード長 | 736 bytes |
コンパイル時間 | 2,989 ms |
コンパイル使用メモリ | 75,184 KB |
実行使用メモリ | 41,720 KB |
最終ジャッジ日時 | 2024-07-18 07:24:29 |
合計ジャッジ時間 | 5,245 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
import java.io.*; import java.util.*; public class Main_yukicoder729 { private static Scanner sc; private static Printer pr; private static void solve() { char[] s = sc.next().toCharArray(); int i = sc.nextInt(); int j = sc.nextInt(); char tmp = s[i]; s[i] = s[j]; s[j] = tmp; pr.println(s); } // --------------------------------------------------- public static void main(String[] args) { sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes())); pr = new Printer(System.out); solve(); // pr.close(); pr.flush(); // sc.close(); } static String INPUT = null; private static class Printer extends PrintWriter { Printer(OutputStream out) { super(out); } } }