結果
問題 |
No.8060 サンプルケース至上主義
|
ユーザー |
![]() |
提出日時 | 2020-04-20 21:51:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 408 bytes |
コンパイル時間 | 1,651 ms |
コンパイル使用メモリ | 166,032 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 09:17:24 |
合計ジャッジ時間 | 1,722 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s; string ans = "ans"; if (s == "0") ans = "Nothing"; else if (s == "3.14159265") ans = "pi"; else if (s == "1112345678999+X") ans = "九蓮宝燈\nThirteen Orphans"; else if (s == "All") ans = "3\n4\n4\n3\n6\n2\n2"; else ans = "さmpぇ"; cout << ans << '\n'; return 0; }