結果

問題 No.632 穴埋め門松列
ユーザー HaijinnHaijinn
提出日時 2018-02-12 17:18:47
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 20,992 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 16:09:56
合計ジャッジ時間 860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%c%*c%c%*c%c",&a[0],&a[1],&a[2]);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>
int main(){
	char a[3];
	int i;
	int x;
	
	scanf("%c%*c%c%*c%c",&a[0],&a[1],&a[2]);
	for(i=0;i<3;i++){
		if(a[i]=='?'){
		//	printf("!\n");
		switch(i){
			
			case 0:
			if(a[1]=='3'){
				
				printf("1\n");;
				
				
			}
			if(a[1]=='2'){
				
				printf("4\n");;
				
				
			}
			break;
			case 1:
			printf("14\n");
			break;
			case 2:
				if(a[1]==3){
				
				printf("1\n");;
				
				
			}
			if(a[1]=='2'){
				
				printf("4\n");;
				
				
			}
			break;
			
			
		}
			
		}
			
			
			
			
			
			
			
			
			
			
		}
			
			
			
			
			
			
		
		
		
		
	
	
	return 0;
}
0