結果
| 問題 |
No.8115 What day of week is it in N days?
|
| コンテスト | |
| ユーザー |
Ponzu
|
| 提出日時 | 2025-04-03 06:32:02 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 215 bytes |
| コンパイル時間 | 893 ms |
| コンパイル使用メモリ | 85,820 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-04-03 06:32:04 |
| 合計ジャッジ時間 | 2,123 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 19 |
ソースコード
#include<iostream>
#include<vector>
using namespace std;
int main()
{
int N;
cin>>N;
N%=7;
vector<string> s = {"Tuesday","Wednensday","Thursday","Friday","Saturday","Sunday","Monday"};
cout << s[N] << endl;
}
Ponzu