結果

問題 No.543 命題
ユーザー asdfghjkl;asdfghjkl;
提出日時 2020-03-19 18:22:19
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 28,928 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 03:24:14
合計ジャッジ時間 495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>


int main(void){
char a[5],b[5];
scanf("%s %s",a,b);
if(a[0]=='T'&&b[0]=='T'){printf("T T\n");}
if(a[0]=='T'&&b[0]=='F'){printf("F T\n");}
if(a[0]=='F'&&b[0]=='T'){printf("F F\n");}
if(a[0]=='F'&&b[0]=='F'){printf("F F\n");}
}
0