結果

問題 No.543 命題
ユーザー asdfghjkl;asdfghjkl;
提出日時 2020-03-19 18:21:54
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 27,808 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-20 21:01:52
合計ジャッジ時間 570 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
4,380 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 T\n");}
if(a[0]=='F'&&b[0]=='F'){printf("F F\n");}
}
0