結果
問題 | No.2117 中国剰余定理入門 |
ユーザー | 👑 p-adic |
提出日時 | 2022-10-03 13:38:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 994 bytes |
コンパイル時間 | 536 ms |
コンパイル使用メモリ | 68,980 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-26 11:59:35 |
合計ジャッジ時間 | 1,930 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | RE | - |
ソースコード
#include <iostream> #include <string> #include <stdio.h> #include <stdint.h> using namespace std; #define CIN( LL , A ) LL A; cin >> A #define TYPE_OF( VAR ) remove_const<remove_reference<decltype( VAR )>::type >::type #define FOR( VAR , INITIAL , FINAL_PLUS_ONE ) for( TYPE_OF( FINAL_PLUS_ONE ) VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) #define QUIT return 0 #define RETURN( ANSWER ) cout << ( ANSWER ) << "\n"; QUIT #include <cassert> #define MAIN main int MAIN() { CIN( int , B_0 ); assert( 1 <= B_0 && B_0 <= 100 ); CIN( int , B_1 ); assert( 1 <= B_1 && B_1 <= 100 ); CIN( int , C_0 ); assert( -100 <= C_0 && C_0 <= 100 ); C_0 = ( C_0 >= 0 ? C_0 % B_0 : ( B_0 - ( - C_0 ) % B_0 ) % B_0 ); CIN( int , C_1 ); assert( -100 <= C_1 && C_1 <= 100 ); C_1 = ( C_1 >= 0 ? C_1 % B_1 : ( B_1 - ( - C_1 ) % B_1 ) % B_1 ); int product = B_0 * B_1; FOR( n , 0 , product ){ if( n % B_0 == C_0 && n % B_1 == C_1 ){ RETURN( n ); } } RETURN( "NaN" ); }