結果
| 問題 | 
                            No.795 Restrictions!!!!!!!!!!!!!!
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Maeda
                         | 
                    
| 提出日時 | 2025-03-11 10:39:21 | 
| 言語 | C  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 172 bytes | 
| コンパイル時間 | 408 ms | 
| コンパイル使用メモリ | 24,064 KB | 
| 実行使用メモリ | 7,324 KB | 
| 最終ジャッジ日時 | 2025-03-11 10:39:23 | 
| 合計ジャッジ時間 | 1,877 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 20 | 
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%d",&n);
      |         ^~~~~~~~~~~~~~
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d",&m);
      |         ^~~~~~~~~~~~~~
            
            ソースコード
#include <stdio.h>
int main(void){
	int n,m;
	scanf("%d",&n);
	scanf("%d",&m);
	int sum = (n*100)+(n*10);
	if(sum % 2 == 0){
		printf("Yes");
	}else {
		printf("No");
	}
}
            
            
            
        
            
Maeda