結果
問題 |
No.1027 U+1F4A0
|
ユーザー |
![]() |
提出日時 | 2020-04-17 21:43:51 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 506 bytes |
コンパイル時間 | 2,400 ms |
コンパイル使用メモリ | 191,504 KB |
最終ジャッジ日時 | 2025-01-09 19:52:56 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 6 WA * 16 |
ソースコード
#include <iostream> #include <bits/stdc++.h> #include <math.h> using namespace std; #define ll long long #define pbb push_back #define ppb pop_back #define fii first #define see second #define tezz std::ios::sync_with_stdio(false);std::cin.tie(NULL);std::cout.tie(NULL); bool ch(char c){ if(c=='A' || c=='E' || c=='I' || c=='O' || c=='U' || c=='Y') return true; else return false; } int main() { tezz ll d1,d2; cin>>d1>>d2; if(d2%d1==0) cout<<0; else cout<<8; return 0; }