結果
問題 |
No.2392 二平方和
|
ユーザー |
👑 |
提出日時 | 2023-01-22 22:32:39 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 311 bytes |
コンパイル時間 | 473 ms |
コンパイル使用メモリ | 65,408 KB |
最終ジャッジ日時 | 2025-02-10 06:25:44 |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
#include <iostream> #include <string> #include <stdio.h> #include <stdint.h> using namespace std; #define CIN( LL , A ) LL A; cin >> A #define QUIT return 0 #define RETURN( ANSWER ) cout << ( ANSWER ) << "\n"; QUIT #define MAIN main int MAIN() { CIN( int , P ); RETURN( P % 4 == 3 ? "No" : "Yes" ); }