結果
| 問題 | No.8043 yukicoderへようこそ! |
| コンテスト | |
| ユーザー |
CuriousFairy315
|
| 提出日時 | 2019-04-01 21:41:22 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 312 bytes |
| 記録 | |
| コンパイル時間 | 538 ms |
| コンパイル使用メモリ | 76,044 KB |
| 実行使用メモリ | 7,976 KB |
| 最終ジャッジ日時 | 2026-05-21 05:59:58 |
| 合計ジャッジ時間 | 1,218 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 6 |
ソースコード
#include<iostream>
using namespace std; // 575
int main() {
string s;
getline(cin, s);
if (s == "yukicoder") cout << "Hello World!";
else if (s == "10") cout << "55";
else if (s == "1 2") cout << "3 yukicoder";
else if (s == "1") cout << "1";
else if (s == "3") cout << "150";
cout << endl;
return 0;
}
CuriousFairy315