結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー xxxasdfghjkxxxasdfghjk
提出日時 2018-09-07 10:18:38
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 1,359 ms
コンパイル使用メモリ 157,148 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 17:13:47
合計ジャッジ時間 2,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |   scanf("%d/%d/%d",&y,&m,&d);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
#define MAX_N 100001
#define INF_INT 2147483647
#define INF_LL 9223372036854775807
#define REP(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;

int main()
{
  
  int N,a[1001],y,m,d;
  scanf("%d/%d/%d",&y,&m,&d);
  struct tm birthdayStruct = {0,0,0,d,m,y};
  time_t now = mktime(&birthdayStruct);
  struct tm ts = {0,0,0,birthdayStruct.tm_mday+2,birthdayStruct.tm_mon,birthdayStruct.tm_year};
  time_t tomm = mktime(&ts);
  struct tm *tt = localtime(&tomm);
  printf("%04d/%02d/%02d\n",tt->tm_year,tt->tm_mon,tt->tm_mday);
  return 0;
}

0