結果

問題 No.2314 Backflip
ユーザー sysnote8mainsysnote8main
提出日時 2024-02-03 22:37:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 41,168 KB
最終ジャッジ日時 2024-09-28 11:04:03
合計ジャッジ時間 3,980 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
39,748 KB
testcase_01 AC 99 ms
39,832 KB
testcase_02 AC 121 ms
40,988 KB
testcase_03 AC 111 ms
41,008 KB
testcase_04 AC 112 ms
40,984 KB
testcase_05 AC 112 ms
40,872 KB
testcase_06 AC 107 ms
40,960 KB
testcase_07 AC 119 ms
40,800 KB
testcase_08 AC 120 ms
40,812 KB
testcase_09 AC 121 ms
41,168 KB
testcase_10 AC 102 ms
40,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
  public static void log(Object obj) {
    System.out.println(obj.toString());
  }

  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    char[] c = s.toCharArray();
    c[c.length-1] = c[c.length-1] == '0' ? '1': '0';
    log(new String(c));
  }
}
0