結果
問題 | No.1735 C# |
ユーザー | ripity |
提出日時 | 2021-11-12 21:49:21 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 133 ms / 2,000 ms |
コード長 | 444 bytes |
コンパイル時間 | 2,267 ms |
コンパイル使用メモリ | 76,460 KB |
実行使用メモリ | 54,312 KB |
最終ジャッジ日時 | 2024-11-25 18:02:12 |
合計ジャッジ時間 | 4,016 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); String s = sc.next(); String ans = ""; if( s.equals("E") ) { ans = "F"; }else if( s.equals("B") ) { ans = "C"; }else { ans = s+"#"; } System.out.println(ans); } }