結果
問題 | No.427 テレビ |
ユーザー | hanorver |
提出日時 | 2016-10-02 22:20:52 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 198 bytes |
コンパイル時間 | 639 ms |
コンパイル使用メモリ | 67,668 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-21 14:55:22 |
合計ジャッジ時間 | 1,205 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> int main() { long long a, b; std::cin >> a >> b; std::cout << (a < b ? "YOKO" : "TATE") << std::endl; return 0; }