結果
| 問題 | 
                            No.795 Restrictions!!!!!!!!!!!!!!
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Liny52551272
                         | 
                    
| 提出日時 | 2019-11-12 16:34:47 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 251 bytes | 
| コンパイル時間 | 75 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-09-19 03:59:25 | 
| 合計ジャッジ時間 | 1,294 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 20 | 
ソースコード
N = int(input().strip())
M = int(input().strip())
a = N * 10 + M
if a % 2 == 1:
  print('No')
else:
  b = a // 2
  b = b - min(N * 10, (b // 10) * 10)
  print('b:{}'.format(b))
  
  if b < M:
    print('Yes')
  else:
    print('No')
            
            
            
        
            
Liny52551272