結果
| 問題 |
No.543 命題
|
| コンテスト | |
| ユーザー |
asdfghjkl;
|
| 提出日時 | 2020-03-19 18:21:54 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 300 bytes |
| コンパイル時間 | 215 ms |
| コンパイル使用メモリ | 29,184 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-14 03:25:28 |
| 合計ジャッジ時間 | 545 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 WA * 1 |
ソースコード
#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");}
}
asdfghjkl;