結果
| 問題 | No.841 8/32 |
| コンテスト | |
| ユーザー |
dnish
|
| 提出日時 | 2019-06-28 21:24:47 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 465 bytes |
| 記録 | |
| コンパイル時間 | 1,040 ms |
| コンパイル使用メモリ | 179,916 KB |
| 実行使用メモリ | 6,144 KB |
| 最終ジャッジ日時 | 2026-03-23 08:00:43 |
| 合計ジャッジ時間 | 1,795 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 WA * 4 |
ソースコード
#include "bits/stdc++.h"
#define REP(i, n, N) for(ll i = 0; i < (n); i++)
#define p(s) cout << (s) << endl
#define p2(a, b) cout << (a) <<" "<< (b) << endl
using namespace std;
typedef long long ll;
ll mod = 1e9+7;
ll inf = 1e18;
int main() {
string s1, s2;
cin >> s1 >> s2;
ll a = 31;
if(s1 == "Sun" || s1 == "Sat"){
a++;
}
if(a == 32 && s2 == "Sun" || s2 == "Sat"){
a++;
}
cout << "8/"<< a << endl;
return 0;
}
dnish