結果
問題 |
No.795 Restrictions!!!!!!!!!!!!!!
|
ユーザー |
![]() |
提出日時 | 2022-05-14 10:03:09 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 369 bytes |
コンパイル時間 | 2,839 ms |
コンパイル使用メモリ | 73,924 KB |
実行使用メモリ | 42,944 KB |
最終ジャッジ日時 | 2024-07-22 18:10:55 |
合計ジャッジ時間 | 7,614 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 20 |
ソースコード
import java.util.*; public class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); String line; line=sc.nextLine(); int n=Integer.parseInt(line); line=sc.nextLine(); int m=Integer.parseInt(line); n+=m/10; if(n%2==0){ System.out.println("yes"); }else{ System.out.println("no"); } } }