結果

問題 No.3058 M + D Problem
ユーザー Adam JimenezAdam Jimenez
提出日時 2020-04-01 21:34:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-27 09:19:51
合計ジャッジ時間 1,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,264 KB
testcase_01 AC 32 ms
11,136 KB
testcase_02 AC 33 ms
11,264 KB
testcase_03 AC 32 ms
11,264 KB
testcase_04 WA -
testcase_05 AC 32 ms
11,264 KB
testcase_06 AC 33 ms
11,136 KB
testcase_07 AC 32 ms
11,264 KB
testcase_08 AC 32 ms
11,264 KB
testcase_09 AC 32 ms
11,264 KB
testcase_10 AC 32 ms
11,264 KB
testcase_11 AC 32 ms
11,392 KB
testcase_12 AC 32 ms
11,136 KB
testcase_13 AC 32 ms
11,136 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from calendar import monthrange
a,b = [int(x) for x in input().split()]
m=((a-1)%12)+1
d=monthrange(2020,m)[1]

print(m+(b%d))


0