#45185: cpp 超級簡單解


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

學校 : 臺北市私立薇閣高級中學
編號 : 258883
來源 : [60.248.154.139]
最後登入時間 :
2024-12-30 14:21:56
g779. 小億老師的幸運數字 -- 小億教學題 | From: [60.248.154.139] | 發表日期 : 2025-01-22 13:02

#include <iostream>
#include <string>
using namespace std;

int main() {
    int a, b;
    cin >> a >> b; 


    if (a % b == 0) {
        cout << "YES" << endl;
    }
    
    else {
        string A = to_string(a);  
        string B = to_string(b);  
        if (A.find(B) != string::npos) {
            cout << "YES" << endl;
        } else {
            cout << "NO" << endl;
        }
    }

    return 0;
}

 
ZeroJudge Forum