#44919: 史上最暴力的暴力解


1121232@stu.wghs.tp.edu.tw (Ian911436)

學校 : 臺北市私立薇閣高級中學
編號 : 258883
來源 : [60.248.154.139]
最後登入時間 :
2025-01-23 13:00:15
e368. 質數日 -- π | From: [60.248.154.139] | 發表日期 : 2024-12-25 13:06

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main() {
    vector<string> prime_dates = {
        "2000/01/07", "2000/05/03", "2001/02/23", "2001/03/13", 
        "2003/12/23", "2006/01/07", "2007/08/23", "2010/09/07", 
        "2013/02/23", "2019/05/23", "2019/08/23", "2030/03/17", 
        "2036/03/17", "2040/03/07", "2040/08/23", "2048/01/07", 
        "2060/03/17", "2066/06/17", "2070/01/03", "2070/02/23", 
        "2070/03/07", "2070/05/23", "2072/10/13", "2091/01/03",
        // Dates extracted from the images
        "2093/01/13", "2100/03/13", "2100/09/07", "2105/05/03", 
        "2132/01/07", "2133/03/13", "2136/02/23", "2187/02/23", 
        "2189/01/07", "2199/05/23", "2300/06/17", "2301/03/13", 
        "2310/03/13", "2397/03/13", "2402/10/13", "2405/05/03", 
        "2409/09/07", "2427/02/23", "2435/05/03", "2450/12/23", 
        "2490/03/07", "2600/10/13", "2607/03/13", "2615/05/03", "2619/03/13", "2693/10/13", "2702/01/13", "2708/01/07", "2933/10/13"
    };    for (const string& date : prime_dates) {
        cout << date << endl;
    }

    return 0;
}

 

 
ZeroJudge Forum