結果
問題 |
No.1305 Speak of the Devil
|
ユーザー |
![]() |
提出日時 | 2020-12-03 23:43:47 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 132 ms / 2,000 ms |
コード長 | 251 bytes |
コンパイル時間 | 2,373 ms |
コンパイル使用メモリ | 74,276 KB |
実行使用メモリ | 41,328 KB |
最終ジャッジ日時 | 2024-09-14 09:09:36 |
合計ジャッジ時間 | 6,676 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int p = sc.nextInt(); int q = sc.nextInt(); sc.close(); System.out.println(Math.min(p, q)); } }