結果
問題 | No.543 命題 |
ユーザー | asdfghjkl; |
提出日時 | 2020-03-19 18:21:04 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 300 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-08 03:24:12 |
合計ジャッジ時間 | 489 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
ソースコード
#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("T F\n");} if(a[0]=='F'&&b[0]=='T'){printf("F T\n");} if(a[0]=='F'&&b[0]=='F'){printf("T T\n");} }